Created
May 24, 2022 01:44
-
-
Save nurmuhammadsirat/f9f69caed201001c09c66a34a81cce5f to your computer and use it in GitHub Desktop.
Nice scrollbar styling
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
| const scrollBarStyle = ` | |
| &::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| &::-webkit-scrollbar-track { | |
| background: #f6f6f6; | |
| border-radius: 8px; | |
| } | |
| &::-webkit-scrollbar-thumb { | |
| background: #e2e2e2; | |
| border-radius: 8px; | |
| } | |
| &::-webkit-scrollbar-thumb:hover { | |
| background: #c8c8c8; | |
| } | |
| `; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment