2020-03-22 11:38:02 +08:00
|
|
|
@import '../../style/themes/index';
|
|
|
|
@import '../../style/mixins/index';
|
|
|
|
|
|
|
|
@space-prefix-cls: ~'@{ant-prefix}-space';
|
2020-09-14 10:53:47 +08:00
|
|
|
@space-item-prefix-cls: ~'@{ant-prefix}-space-item';
|
2020-03-22 11:38:02 +08:00
|
|
|
|
|
|
|
.@{space-prefix-cls} {
|
|
|
|
display: inline-flex;
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2020-03-22 11:38:02 +08:00
|
|
|
&-vertical {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2020-04-16 12:28:04 +08:00
|
|
|
|
|
|
|
&-align {
|
|
|
|
&-center {
|
|
|
|
align-items: center;
|
|
|
|
}
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2020-04-16 12:28:04 +08:00
|
|
|
&-start {
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2020-04-16 12:28:04 +08:00
|
|
|
&-end {
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
2021-10-13 15:38:59 +08:00
|
|
|
|
2020-04-16 12:28:04 +08:00
|
|
|
&-baseline {
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
|
|
|
}
|
2020-03-22 11:38:02 +08:00
|
|
|
}
|
2020-04-01 17:38:03 +08:00
|
|
|
|
2020-09-14 10:53:47 +08:00
|
|
|
.@{space-item-prefix-cls} {
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 17:38:03 +08:00
|
|
|
@import './rtl';
|