mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
977467909c
* feat(module: flex): add flex * add doc and demo
28 lines
311 B
Plaintext
28 lines
311 B
Plaintext
.ant-flex {
|
|
display: flex;
|
|
|
|
&-vertical {
|
|
flex-direction: column;
|
|
}
|
|
|
|
&-rtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
&-gap-small {
|
|
gap: 8px;
|
|
}
|
|
|
|
&-gap-middle {
|
|
gap: 16px;
|
|
}
|
|
|
|
&-gap-large {
|
|
gap: 24px;
|
|
}
|
|
}
|