reset.scss 685 B

123456789101112131415161718192021
  1. /* #ifndef APP-NVUE */
  2. // 在weex,也即nvue中,所有元素默认为border-box
  3. view, text { box-sizing: border-box; }
  4. /* #endif */
  5. image {
  6. display: inline-block;
  7. // 解决图片加载时可能会瞬间变形的问题
  8. will-change: transform;
  9. }
  10. page {
  11. // 此字体不会引发 字体图标在ios下右侧空白字符问题
  12. line-height: 1.5;
  13. tab-size: 4;
  14. font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  15. font-feature-settings: normal;
  16. font-variation-settings: normal;
  17. font-size: 28rpx;
  18. font-weight: 400;
  19. }