chore(build): rename ionic directory to src and update all references in the build process.

This commit is contained in:
Josh Thomas
2016-05-19 13:20:59 -05:00
parent 8470ae04ac
commit c8f760f080
595 changed files with 73 additions and 87 deletions

View File

@@ -0,0 +1,35 @@
// 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;
}
}