-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_scrollbar.scss
More file actions
35 lines (35 loc) · 800 Bytes
/
_scrollbar.scss
File metadata and controls
35 lines (35 loc) · 800 Bytes
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
.content-ul {
&::-webkit-scrollbar {
width: 7px;
height: 6px;
}
&::-webkit-scrollbar-button {
width: 0;
height: 0;
}
&::-webkit-scrollbar-thumb {
background: #D3D3D3;
border: 0 none #ffffff;
border-radius: 50px;
}
&::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
&::-webkit-scrollbar-thumb:active {
background: #787878;
}
&::-webkit-scrollbar-track {
background: #F1F1F1;
// border: 1 solid #ffffff;
border-radius: 50px;
}
&::-webkit-scrollbar-track:hover {
background: #e2e2e2;
}
&::-webkit-scrollbar-track:active {
background: #cccccc;
}
&::-webkit-scrollbar-corner {
background: transparent;
}
}