| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @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: 1px;
- height: 5px;
- }
- &::-webkit-scrollbar-thumb {
- background-color: transparent;
- }
- &:hover {
- &::-webkit-scrollbar {
- position: relative;
- width: 1px;
- height: 5px;
- border-radius: 2px;
- }
- &::-webkit-scrollbar-thumb {
- background-color: #d3d3d3;
- }
- }
- }
- 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;
- }
- .paginationPosition {
- /* mt-4 flex justify-end */
- display: flex;
- justify-content: flex-end;
- margin-top: 20px;
- }
- .w-e-text-container img,
- .w-e-text-container video,
- .w-e-text img,
- .w-e-text video {
- max-width: 100%;
- width: 100%;
- height: auto;
- }
|