mov-mobile
Version:
Mov - 让你感到幸福的 Vue 组件库
51 lines (38 loc) • 672 B
text/less
@import "../../style/common";
.mona-row {
display: flex;
flex-wrap: wrap;
}
.mona-row-center {
justify-content: center;
}
.mona-row-start {
justify-content: flex-start;
}
.mona-row-end {
justify-content: flex-end;
}
.mona-row-space-between {
justify-content: space-between;
}
.mona-row-space-around {
justify-content: space-around;
}
.mona-row-align-flex-start {
align-items: flex-start;
}
.mona-row-align-flex-end {
align-items: flex-end;
}
.mona-row-align-center {
align-items: center;
}
.mona-row-align-baseline {
align-items: baseline;
}
.mona-row-align-stretch {
align-items: stretch;
}
.mona-row-direction-column {
flex-direction: column;
}