Skip to content

Instantly share code, notes, and snippets.

@TrevorJTClarke
Created October 5, 2015 21:38
Show Gist options
  • Save TrevorJTClarke/48f86539fa2e9cabf4de to your computer and use it in GitHub Desktop.
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. πŸ‘½
// ::-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