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

18 lines
247 B
SCSS

/* #ifdef APP-NVUE || UNI-APP-X && APP */
$is-app: true;
/* #endif */
/* #ifndef APP-NVUE || UNI-APP-X && APP */
$is-app: false;
/* #endif */
@mixin is-app {
@if $is-app {
@content;
}
}
@mixin not-app {
@if not($is-app) {
@content;
}
}