App.vue 589 B

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