freezerpc/app/client/styles/scrollbar.scss

29 lines
492 B
SCSS
Raw Normal View History

2020-08-28 21:06:19 +00:00
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar:horizontal {
height: 10px;
}
::-webkit-scrollbar-track {
background-color: #10101044;
border-radius: 5px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #363636;
2020-12-13 18:24:25 +00:00
}
::-webkit-scrollbar-thumb:hover {
background-color: #404040;
}
::-webkit-scrollbar-thumb:horizontal {
background-color: #36363690;
}
::-webkit-scrollbar-thumb:horizontal:hover {
background-color: #404040;
2020-08-28 21:06:19 +00:00
}