18 lines
276 B
SCSS
18 lines
276 B
SCSS
|
::-webkit-scrollbar {
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background-color: #c6c7ca;
|
||
|
border-radius: 10px;
|
||
|
&:hover {
|
||
|
background-color: #a1a1a1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-track {
|
||
|
background-color: transparent;
|
||
|
}
|