App.vue 532 B

123456789101112131415161718192021222324252627282930
  1. <script>
  2. export default {
  3. };
  4. </script>
  5. <style lang="scss">
  6. @import "uview-ui/index.scss";
  7. @import './iconFont/iconfont.css';
  8. $mainColor: #ff6e3e;
  9. /* 解决头条小程序组件内引入字体不生效的问题 */
  10. /* #ifdef MP-TOUTIAO */
  11. @font-face {
  12. font-family: uniicons;
  13. src: url('/iconFont/uni.ttf');
  14. }
  15. page {
  16. width: 100%;
  17. height: 100%;
  18. }
  19. /* #endif */
  20. ::-webkit-scrollbar {
  21. display: none;
  22. width: 0 !important;
  23. height: 0 !important;
  24. -webkit-appearance: none;
  25. background: transparent;
  26. }
  27. </style>