Last active
August 9, 2024 07:52
-
-
Save zartgesotten/024a168973fbe0c4aeff42dcaccd406c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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