Files
Undecked/Frontend/pages/home/sass/Scrollbar.scss
2023-08-29 19:55:48 +02:00

20 lines
291 B
SCSS

/* width */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #ffffff0f;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #b8b8b8;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #d6d6d6;
}