Files
2016-02-01 19:08:01 -06:00

29 lines
615 B
SCSS

// Scrollbars
// --------------------------------------------------
// Styling for dekstop webkit browsers
// These do not apply for mobile browsers
.css-scrollbars {
::-webkit-scrollbar {
width: 9px;
}
::-webkit-scrollbar-thumb:vertical {
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 {
background: rgba(0, 0, 0, 0.6);
border: 2px solid transparent;
border-radius: 20px;
background-clip: padding-box;
min-height: 10px;
}
}