Files
QXTstore/QXTfront/uni_modules/lime-style/mixins/flex.scss

21 lines
313 B
SCSS
Raw Normal View History

2025-11-05 17:34:23 +08:00
@mixin flex {
/* #ifndef UNI-APP-X */
display: flex;
/* #endif */
}
@mixin flex-column {
/* #ifndef UNI-APP-X */
flex-direction: column;
/* #endif */
}
@mixin flex-row {
flex-direction: row;
}
@mixin universal {
position: relative;
box-sizing: border-box;
display: flex;
flex-direction: column;
}