| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @use '@/styles/common.scss';
- @use '@/styles/animate.scss';
- @use '@/styles/custom-component.scss';
- * {
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- &::-webkit-scrollbar {
- position: relative;
- width: 0;
- }
- &::-webkit-scrollbar-thumb {
- background-color: transparent;
- }
- }
- .el-button {
- font-size: 14cpx !important;
- }
- body {
- background-color: $background-color;
- color: $text-color;
- }
- .el-tabs__nav-wrap::after {
- position: static !important;
- }
- .flex {
- display: flex;
- }
- .items-center {
- align-items: center;
- }
- .cursor-pointer {
- cursor: pointer;
- }
|