Created
January 7, 2025 14:38
-
-
Save aslafy-z/09f0d9a0d57198ac5ba094d7f5a6ead1 to your computer and use it in GitHub Desktop.
Mini CSS Scrollbar
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
/* Apply custom scrollbar styles */ | |
#content-list::-webkit-scrollbar { | |
width: 6px; /* Width of the scrollbar */ | |
} | |
#content-list::-webkit-scrollbar-thumb { | |
background-color: rgba(255, 255, 255, 0.3); /* Color of the scrollbar thumb */ | |
border-radius: 3px; /* Round edges for the scrollbar */ | |
} | |
#content-list::-webkit-scrollbar-thumb:hover { | |
background-color: rgba(255, 255, 255, 0.5); /* Thumb hover effect */ | |
} | |
#content-list::-webkit-scrollbar-track { | |
background-color: transparent; /* Track background */ | |
} | |
/* Firefox-specific scrollbar */ | |
#content-list { | |
scrollbar-width: thin; /* Use a thin scrollbar */ | |
scrollbar-color: rgba(255, 255, 255, 0.3) transparent; /* Thumb and track colors */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment