Skip to content

Instantly share code, notes, and snippets.

@RightHandedMonkey
Created October 23, 2017 21:28
Show Gist options
  • Save RightHandedMonkey/9d76c8160c7e2eca34097880a450dda5 to your computer and use it in GitHub Desktop.
Save RightHandedMonkey/9d76c8160c7e2eca34097880a450dda5 to your computer and use it in GitHub Desktop.
Atom visible scrollbar
/*
* 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