1
0

platform.scss 259 B

1234567891011121314151617
  1. /* #ifdef APP-NVUE || APP-ANDROID || APP-IOS */
  2. $is-app: true;
  3. /* #endif */
  4. /* #ifndef APP-NVUE || APP-ANDROID || APP-IOS */
  5. $is-app: false;
  6. /* #endif */
  7. @mixin is-app {
  8. @if $is-app {
  9. @content;
  10. }
  11. }
  12. @mixin not-app {
  13. @if not($is-app) {
  14. @content;
  15. }
  16. }