Skip to content

Instantly share code, notes, and snippets.

@aslafy-z
Created January 7, 2025 14:38
Show Gist options
  • Save aslafy-z/09f0d9a0d57198ac5ba094d7f5a6ead1 to your computer and use it in GitHub Desktop.
Save aslafy-z/09f0d9a0d57198ac5ba094d7f5a6ead1 to your computer and use it in GitHub Desktop.
Mini CSS Scrollbar
/* 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