index.scss 537 B

123456789101112131415161718192021222324252627
  1. @import './tools';
  2. @import './ui';
  3. /* 字体文件 */
  4. @font-face {
  5. font-family: OPPOSANS;
  6. src: url('~@/sheep/scss/font/OPPOSANS-M-subfont.ttf');
  7. }
  8. .font-OPPOSANS {
  9. font-family: OPPOSANS;
  10. }
  11. page {
  12. -webkit-overflow-scrolling: touch; // 解决ios滑动不流畅
  13. height: 100%;
  14. width: 100%;
  15. // font-family: OPPOSANS;
  16. word-break: break-all; //英文文本不换行
  17. white-space: normal;
  18. background-color: $bg-page;
  19. color: $dark-3;
  20. }
  21. ::-webkit-scrollbar {
  22. width: 0;
  23. height: 0;
  24. color: transparent;
  25. display: none;
  26. }