Files
2016-01-28 20:05:11 -06:00

28 lines
643 B
SCSS

// Scrollbars
// --------------------------------------------------
// Styling for dekstop webkit browsers
// These do not apply for mobile browsers
::-webkit-scrollbar {
width: 9px;
}
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
background: rgba(0, 0, 0, 0.4);
border: 2px solid transparent;
border-radius: 20px;
background-clip: padding-box;
min-height: 10px;
}
::-webkit-scrollbar-thumb:vertical:active,
::-webkit-scrollbar-thumb:horizontal:active {
background: rgba(0, 0, 0, 0.6);
border: 2px solid transparent;
border-radius: 20px;
background-clip: padding-box;
min-height: 10px;
}