Created
March 25, 2024 10:48
-
-
Save TheLucifurry/729e253db93296d02a3fdfadabf7d4d9 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-thumb-color: #CCC; | |
.custom-scroll { | |
--custom-scroll__size: 6px; | |
&::-webkit-scrollbar-thumb, | |
::-webkit-scrollbar-thumb { | |
background-color: $scrollbar-thumb-color; | |
border-radius: 10px; | |
} | |
&::-webkit-scrollbar, | |
::-webkit-scrollbar { | |
width: var(--custom-scroll__size); | |
height: var(--custom-scroll__size); | |
} | |
&::-webkit-scrollbar-track, | |
::-webkit-scrollbar-track { | |
border-radius: 10px; | |
} | |
// For Firefox | |
scrollbar-color: $scrollbar-thumb-color transparent; | |
scrollbar-width: thin; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment