main.scss 585 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @use '@/styles/common.scss';
  2. @use '@/styles/animate.scss';
  3. @use '@/styles/custom-component.scss';
  4. * {
  5. padding: 0;
  6. margin: 0;
  7. box-sizing: border-box;
  8. &::-webkit-scrollbar {
  9. position: relative;
  10. width: 0;
  11. }
  12. &::-webkit-scrollbar-thumb {
  13. background-color: transparent;
  14. }
  15. }
  16. .el-button {
  17. font-size: 14cpx !important;
  18. }
  19. body {
  20. background-color: $background-color;
  21. color: $text-color;
  22. }
  23. .el-tabs__nav-wrap::after {
  24. position: static !important;
  25. }
  26. .flex {
  27. display: flex;
  28. }
  29. .items-center {
  30. align-items: center;
  31. }
  32. .cursor-pointer {
  33. cursor: pointer;
  34. }