ant-design-blazor/components/flex/style/index.less
James Yeung 977467909c
feat(module: flex): add flex component (#3547)
* feat(module: flex): add flex

* add doc and demo
2023-12-20 23:33:20 +08:00

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;
}
}