webvm/scrollbar.css
Carlo Piovesan d869b51499 Scrollbar
2022-10-03 12:08:46 +02:00

21 lines
344 B
CSS

.scrollbar {
scrollbar-color: #777 #0000;
}
.scrollbar *::-webkit-scrollbar {
height: 6px;
width: 6px;
background-color: #0000;
}
/* Add a thumb */
.scrollbar *::-webkit-scrollbar-thumb {
border-radius: 3px;
height: 6px;
width: 6px;
background: #777;
}
.scrollbar *::-webkit-scrollbar-thumb:hover {
background: #555;
}