29 lines
449 B
Plaintext
29 lines
449 B
Plaintext
|
@import '../../style/themes/index';
|
||
|
@import '../../style/mixins/index';
|
||
|
|
||
|
@space-prefix-cls: ~'@{ant-prefix}-space';
|
||
|
|
||
|
.@{space-prefix-cls} {
|
||
|
display: inline-flex;
|
||
|
&-vertical {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
&-align {
|
||
|
&-center {
|
||
|
align-items: center;
|
||
|
}
|
||
|
&-start {
|
||
|
align-items: flex-start;
|
||
|
}
|
||
|
&-end {
|
||
|
align-items: flex-end;
|
||
|
}
|
||
|
&-baseline {
|
||
|
align-items: baseline;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// @import './rtl';
|