合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
259 B

  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. }