Created
October 23, 2017 21:28
-
-
Save RightHandedMonkey/9d76c8160c7e2eca34097880a450dda5 to your computer and use it in GitHub Desktop.
Atom visible scrollbar
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
/* | |
* Your existing stylesheet | |
*/ | |
.editor, | |
.tree-view-resizer { | |
::-webkit-scrollbar { | |
width: 2em; | |
height: 2em; | |
} | |
::-webkit-scrollbar-thumb { | |
background-color: rgba(255,255,255,.1); | |
border-radius: 3px; | |
&:hover { | |
background: rgba(255,255,255,.2); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment