style.components.scss 248 B

1234567891011121314
  1. // nvue不能用标签命名样式
  2. /* #ifndef APP-NVUE */
  3. image {
  4. display: inline-block;
  5. // 解决图片加载时可能会瞬间变形的问题
  6. will-change: transform;
  7. }
  8. view,
  9. text {
  10. box-sizing: border-box;
  11. flex-direction: row;
  12. }
  13. /* #endif */