chore(): remove css-scrollbar styles

This commit is contained in:
Adam Bradley
2016-08-04 12:58:45 -05:00
parent dfb8ba4b98
commit ff3daeed6c
2 changed files with 0 additions and 36 deletions

View File

@ -7,7 +7,6 @@
@import
"components/app/normalize",
"components/app/structure",
"components/app/scrollbars",
"components/app/typography",
"util/util";

View File

@ -1,35 +0,0 @@
// Scrollbars
// --------------------------------------------------
// Styling for dekstop webkit browsers
// These do not apply for mobile browsers
.css-scrollbars {
::-webkit-scrollbar {
width: 9px;
}
::-webkit-scrollbar-thumb:vertical {
min-height: 10px;
border: 2px solid transparent;
border-radius: 20px;
background: rgba(0, 0, 0, .4);
background-clip: padding-box;
}
::-webkit-scrollbar-thumb:vertical:active {
min-height: 10px;
border: 2px solid transparent;
border-radius: 20px;
background: rgba(0, 0, 0, .6);
background-clip: padding-box;
}
}