generated from corrad-software/corrad-af-2024
22 lines
358 B
SCSS
22 lines
358 B
SCSS
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgb(var(--scroll-color));
|
|
border-radius: 6px;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: rgb(var(--scroll-hover-color));
|
|
}
|