main.scss 456 B

1234567891011121314151617181920212223242526272829
  1. @use '@/styles/common.scss';
  2. @use '@/styles/animate.scss';
  3. * {
  4. padding: 0;
  5. margin: 0;
  6. box-sizing: border-box;
  7. &::-webkit-scrollbar {
  8. position: relative;
  9. width: 3px;
  10. }
  11. &::-webkit-scrollbar-thumb {
  12. background-color: rgba(155, 155, 155, 0.5);
  13. border-radius: 4px;
  14. }
  15. }
  16. html {
  17. font-size: 16px;
  18. }
  19. body {
  20. background-color: $background-color;
  21. color: $text-color;
  22. }
  23. .el-tabs__nav-wrap::after {
  24. position: static !important;
  25. }