qt-public-ui
Version:
新设计规范下业务组件库
21 lines (20 loc) • 333 B
text/less
.two-columns-left {
display: flex;
.left-wrapper {
justify-content: flex-start;
}
.right-wrapper {
flex-grow: 1;
justify-content: flex-end;
}
}
.two-columns-right {
display: flex;
.left-wrapper {
flex-grow: 1;
justify-content: flex-start;
}
.right-wrapper {
justify-content: flex-end;
}
}