Created
October 5, 2015 21:38
-
-
Save TrevorJTClarke/48f86539fa2e9cabf4de to your computer and use it in GitHub Desktop.
Styling the scrollbar is a bad idea, unless you have a really good use case. π½
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ::-webkit-scrollbar{ | |
// width:10px; | |
// height:10px; | |
// } | |
// ::-webkit-scrollbar-thumb{ | |
// background:0 0; | |
// background-color:rgba(50,50,50,.25); | |
// border:2px solid transparent; | |
// border-radius:10px; | |
// background-clip:padding-box; | |
// } | |
// ::-webkit-scrollbar-thumb:hover{ | |
// background-color:rgba(50,50,50,.5); | |
// } | |
// ::-webkit-scrollbar-track{ | |
// background-color:rgba(50,50,50,.05); | |
// } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment