15 lines
330 B
CSS
15 lines
330 B
CSS
|
*::-webkit-scrollbar,
|
||
|
*::-webkit-scrollbar-thumb {
|
||
|
width: 26px;
|
||
|
border-radius: 13px;
|
||
|
background-clip: padding-box;
|
||
|
border: 10px solid transparent;
|
||
|
color: rgb(108, 117, 125, 0.7);
|
||
|
}
|
||
|
*::-webkit-scrollbar-thumb:hover{
|
||
|
color: rgb(108, 117, 125, 1);
|
||
|
}
|
||
|
|
||
|
*::-webkit-scrollbar-thumb {
|
||
|
box-shadow: inset 0 0 0 10px;
|
||
|
}
|