Skip to content

Instantly share code, notes, and snippets.

@TheLucifurry
Created March 25, 2024 10:48
Show Gist options
  • Save TheLucifurry/729e253db93296d02a3fdfadabf7d4d9 to your computer and use it in GitHub Desktop.
Save TheLucifurry/729e253db93296d02a3fdfadabf7d4d9 to your computer and use it in GitHub Desktop.
$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