Created
May 13, 2020 10:03
-
-
Save mrjackphil/3579a0e9e4162787cbfe4aaf974cea88 to your computer and use it in GitHub Desktop.
Nice looking scrollbar styles for webkit browsers
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
| #element { | |
| overflow-x: overlay; | |
| overflow-y: hidden; | |
| scrollbar-width: thin; | |
| } | |
| #element::-webkit-scrollbar { | |
| height: 5px; | |
| width: 10px; | |
| opacity: 0.5; | |
| background: none; | |
| } | |
| #element::-webkit-scrollbar * { | |
| background: transparent; | |
| } | |
| #element::-webkit-scrollbar-thumb { | |
| background: #ffffff50 !important; | |
| border-radius: 6px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment