Skip to content

Instantly share code, notes, and snippets.

@dmstern
Last active February 9, 2020 11:06
Show Gist options
  • Save dmstern/f59451732bc6f79c8aca85f8c9e69eb0 to your computer and use it in GitHub Desktop.
Save dmstern/f59451732bc6f79c8aca85f8c9e69eb0 to your computer and use it in GitHub Desktop.
Make scrollbars dynamically fit to any web design
::-webkit-scrollbar {
width: 11px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(120, 120, 120, 0.3);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(120, 120, 120, 0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment