wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#app {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
 
:root {
    --bg-color: var(--el-fill-color-lighter);
}
 
a {
    text-decoration: none;
}
 
input,
button {
    outline: none;
}
 
input {
    &:-webkit-autofill {
        box-shadow: 0 0 0px 1000px white inset;
    }
}
 
// scrollbar
::-webkit-scrollbar {
    width: 6px;
}
 
::-webkit-scrollbar:horizontal {
    height: 6px;
}
 
::-webkit-scrollbar-track {
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    background-color: #0003;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}
 
::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    background-color: #0000004d;
}
 
.dark ::-webkit-scrollbar-thumb {
    background-color: #fff3;
}
 
.dark ::-webkit-scrollbar-thumb:hover {
    background-color: #fff6;
}
 
// custom
.cl-comm__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 26px;
    background-color: var(--el-bg-color);
    border: 1px solid var(--el-fill-color-dark);
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
 
    .cl-svg {
        font-size: 16px;
        color: var(--el-text-color-primary);
    }
 
    &:hover {
        background-color: var(--el-fill-color-light);
    }
}