Skip to content

Instantly share code, notes, and snippets.

@nocodesupplyco
Created December 16, 2022 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nocodesupplyco/d92d22bd5027c65791aeb81cc1fdaa60 to your computer and use it in GitHub Desktop.
Save nocodesupplyco/d92d22bd5027c65791aeb81cc1fdaa60 to your computer and use it in GitHub Desktop.
Custom Scrollbars
/* You can also style a specific element by giving it a class and adding the class before the :: (ex: .class::webkit...) */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
border-radius: 0px;
background-color: #f3f3f3;
}
::-webkit-scrollbar-thumb {
border-radius: 0px;
background: #004d43;
}
::-webkit-scrollbar-thumb:window-inactive {
background: #004d43;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment