| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* ./src/index.css */
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- :root {
- --el-color-primary: #2DC7AA !important;
- --el-color-primary-light-3: #2DC7AF !important;
- --el-color-primary-light-5: #2FD8AC !important;
- --el-color-primary-light-7: #2FD8AC !important;
- --el-color-primary-light-8: #bbffef !important;
- --el-color-primary-light-9: #ecf9f6 !important;
- --el-color-primary-dark-2: #24ad93 !important;
- --searchbgColor:'#f6f7f8' !important;
- --el-border-radius-round: 999px !important;
- --el-border-radius-base: 10px !important;
- }
- html {
- font-size: 16px !important;
- }
- body {
- background: #F6F7F8;
- }
- .user-shadow {
- box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1000);
- }
- ::-webkit-scrollbar {
- width: 8px; /* 纵向滚动条*/
- height: 8px; /* 横向滚动条 */
- background-color: #fff;
- }
- /*定义滚动条轨道 内阴影*/
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0);
- background-color: #fff;
- }
- /*定义滑块 内阴影*/
- ::-webkit-scrollbar-thumb {
- -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0);
- background-color: #d5d5d5;
- }
|