main.scss 888 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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: 1px;
  11. height: 5px;
  12. }
  13. &::-webkit-scrollbar-thumb {
  14. background-color: transparent;
  15. }
  16. &:hover {
  17. &::-webkit-scrollbar {
  18. position: relative;
  19. width: 1px;
  20. height: 5px;
  21. border-radius: 2px;
  22. }
  23. &::-webkit-scrollbar-thumb {
  24. background-color: #d3d3d3;
  25. }
  26. }
  27. }
  28. body {
  29. background-color: $background-color;
  30. color: $text-color;
  31. }
  32. .el-tabs__nav-wrap::after {
  33. position: static !important;
  34. }
  35. .flex {
  36. display: flex;
  37. }
  38. .items-center {
  39. align-items: center;
  40. }
  41. .cursor-pointer {
  42. cursor: pointer;
  43. }
  44. .paginationPosition {
  45. /* mt-4 flex justify-end */
  46. display: flex;
  47. justify-content: flex-end;
  48. margin-top: 20px;
  49. }