Files
cashier_app/uni_modules/lime-style/mixins/flex.scss
2025-12-03 10:13:55 +08:00

21 lines
313 B
SCSS

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