mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
7e9fe271ed
* support align * update demo & snapshot * update comment * update docs * Update components/space/index.en-US.md Co-Authored-By: 骗你是小猫咪 <darryshaw@gmail.com> * update doc Co-authored-by: 骗你是小猫咪 <darryshaw@gmail.com>
29 lines
446 B
Plaintext
29 lines
446 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';
|