This repository has been archived on 2022-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
freezerpc/app/client/styles/scrollbar.scss
2020-12-13 19:24:25 +01:00

29 lines
492 B
SCSS

::-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;
}
::-webkit-scrollbar-thumb:hover {
background-color: #404040;
}
::-webkit-scrollbar-thumb:horizontal {
background-color: #36363690;
}
::-webkit-scrollbar-thumb:horizontal:hover {
background-color: #404040;
}