Last active
March 6, 2024 11:27
-
-
Save jeremy0x/bb39e940bf1463c4e477818eb2493b52 to your computer and use it in GitHub Desktop.
Custom Scrollbar Snippet
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
:root { | |
--scrollbar-bg-color: #f1f1f1; | |
--scrollbar-thumb-bg-color: #888; | |
--scrollbar-thumb-hover-color: #555; | |
--scrollbar-thumb-active-color: #000; | |
--scrollbar-border-radius: 10px; | |
} | |
*::-webkit-scrollbar { | |
width: 4px; | |
height: 4px; | |
background-color: var(--scrollbar-bg-color); | |
} | |
*::-webkit-scrollbar-thumb { | |
border-radius: var(--scrollbar-border-radius); | |
background-color: var(--scrollbar-thumb-bg-color); | |
} | |
*::-webkit-scrollbar-thumb:hover { | |
background-color: var(--scrollbar-thumb-hover-color); | |
} | |
*::-webkit-scrollbar-thumb:active { | |
background-color: var(--scrollbar-thumb-active-color); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This Code of yours has been successfully stolen by ME! Why? Check my Username, But I'm not an ingrate, so check the last line