2020-03-30 09:53:10 +08:00
|
|
|
@import '../../style/themes/index';
|
|
|
|
@import '../../style/mixins/index';
|
|
|
|
|
|
|
|
@space-prefix-cls: ~'@{ant-prefix}-space';
|
2020-09-20 14:53:20 +08:00
|
|
|
@space-item-prefix-cls: ~'@{ant-prefix}-space-item';
|
2020-03-30 09:53:10 +08:00
|
|
|
|
|
|
|
.@{space-prefix-cls} {
|
|
|
|
display: inline-flex;
|
|
|
|
&-vertical {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2020-04-30 10:55:54 +08:00
|
|
|
|
|
|
|
&-align {
|
|
|
|
&-center {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
&-start {
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
&-end {
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
&-baseline {
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 09:53:10 +08:00
|
|
|
}
|
2020-04-06 17:35:04 +08:00
|
|
|
|
2020-09-20 14:53:20 +08:00
|
|
|
.@{space-item-prefix-cls} {
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 17:35:04 +08:00
|
|
|
@import './rtl';
|