| 1234567891011121314151617181920212223242526272829 |
- @use '@/styles/common.scss';
- @use '@/styles/animate.scss';
- * {
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- &::-webkit-scrollbar {
- position: relative;
- width: 3px;
- }
- &::-webkit-scrollbar-thumb {
- background-color: rgba(155, 155, 155, 0.5);
- border-radius: 4px;
- }
- }
- html {
- font-size: 16px;
- }
- body {
- background-color: $background-color;
- color: $text-color;
- }
- .el-tabs__nav-wrap::after {
- position: static !important;
- }
|