Skip to content

Instantly share code, notes, and snippets.

@zartgesotten
Last active August 9, 2024 07:52
Show Gist options
  • Save zartgesotten/024a168973fbe0c4aeff42dcaccd406c to your computer and use it in GitHub Desktop.
Save zartgesotten/024a168973fbe0c4aeff42dcaccd406c to your computer and use it in GitHub Desktop.
/* Scrollbar magic */
/* You first need to target all scrollbars to override the DOM */
::-webkit-scrollbar {
-webkit-appearance: auto;
}
/* Then you can target the :horizontal class on it's own */
::-webkit-scrollbar-thumb:horizontal {
border-radius: 20px;
background-color: rgb(29 76 128);
height:10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment