2025-05-27 04:00:34 +00:00

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));
}