9 lines
225 B
SCSS
9 lines
225 B
SCSS
@import '@/uni_modules/uview-plus/theme.scss';
|
|
@mixin flex($direction: row, $space: start) {
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
align-items: center;
|
|
flex-direction: $direction;
|
|
justify-content: $space;
|
|
} |