index.scss 932 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // @import './iconfont.css';
  2. .test {
  3. // 可以通过 @apply 多个样式封装整体样式
  4. @apply mt-4 ml-4;
  5. padding-top: 4px;
  6. color: red;
  7. }
  8. :root,
  9. page {
  10. display: flex;
  11. flex-direction: column;
  12. // 修改按主题色
  13. // --wot-color-theme: #37c2bc;
  14. // 修改按钮背景色
  15. // --wot-button-primary-bg-color: green;
  16. min-height: 100%;
  17. --wot-tag-small-fs: 14px;
  18. // :deep(.wd-tag) {
  19. // padding: 12rpx 36rpx !important;
  20. // }
  21. // :deep(.wd-tag) {
  22. // padding: 12rpx 36rpx !important;
  23. // }
  24. }
  25. // :deep(.wd-tag) {
  26. // padding: 12rpx 36rpx !important;
  27. // }
  28. .wd-tag {
  29. padding: 12rpx 36rpx !important;
  30. &.is-default {
  31. color: rgba(0, 0, 0, 0.6) !important;
  32. }
  33. }
  34. /* ifdef(MP-WEIXIN) */
  35. // 微信小程序填充最小高度
  36. /* stylelint-disable-next-line selector-type-no-unknown */
  37. // layout-default-uni,
  38. .wot-theme-light {
  39. display: flex;
  40. flex-direction: column;
  41. flex-grow: 1;
  42. }
  43. /* endif */