@bee-design/ui
Version:
Bee Design React UI Library.
45 lines (33 loc) • 629 B
text/less
@import '../../style/theme/default.less';
@row-prefix-cls: ~'@{prefix}-row';
.@{row-prefix-cls} {
display: flex;
flex-flow: row wrap;
&-align-start {
align-items: flex-start;
}
&-align-center {
align-items: center;
}
&-align-end {
align-items: flex-end;
}
&-justify-start {
justify-content: flex-start;
}
&-justify-center {
justify-content: center;
}
&-justify-end {
justify-content: flex-end;
}
&-justify-space-around {
justify-content: space-around;
}
&-justify-space-between {
justify-content: space-between;
}
&-rtl {
direction: rtl;
}
}