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

18 lines
247 B
SCSS
Raw Normal View History

2025-11-05 17:34:23 +08:00
/* #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;
}
}