Last active
February 9, 2020 11:06
-
-
Save dmstern/f59451732bc6f79c8aca85f8c9e69eb0 to your computer and use it in GitHub Desktop.
Make scrollbars dynamically fit to any web design
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: 11px; | |
} | |
::-webkit-scrollbar-track { | |
background: transparent; | |
} | |
::-webkit-scrollbar-thumb { | |
background-color: rgba(120, 120, 120, 0.3); | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background: rgba(120, 120, 120, 0.5); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment