App.vue 591 B

1234567891011121314151617181920212223242526272829303132333435
  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. u-divider {
  28. padding-bottom: 10px;
  29. display: flex;
  30. }
  31. </style>