Skip to content

Instantly share code, notes, and snippets.

@2thecrow
Last active February 28, 2023 20:54
Show Gist options
  • Save 2thecrow/8169dd22eeef730db56be105df3f9976 to your computer and use it in GitHub Desktop.
Save 2thecrow/8169dd22eeef730db56be105df3f9976 to your computer and use it in GitHub Desktop.
Custom scroll bar
/* Scroll bar width */
::-webkit-scrollbar {
width: 10px;
}
/* Scroll bar track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Scroll bar handle */
::-webkit-scrollbar-thumb {
background: #5e4838;
}
/* Scroll bar Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #9a4232;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment