Skip to content

Instantly share code, notes, and snippets.

@Lego2012
Created January 11, 2025 07:55
Show Gist options
  • Select an option

  • Save Lego2012/f1c63f8b7af0560cded4c076ec944b53 to your computer and use it in GitHub Desktop.

Select an option

Save Lego2012/f1c63f8b7af0560cded4c076ec944b53 to your computer and use it in GitHub Desktop.
// Custom Scrollbar
body::-webkit-scrollbar {
width: 1em;
height: 1em;
}
body::-webkit-scrollbar-track {
background: var(--action-light);
// border-radius: 100vw;
// margin-block: 0.5em;
}
body::-webkit-scrollbar-thumb {
background: var(--action-dark);
border: 0.25em solid var(--action-light);
// border-radius: 100vw;
}
body::-webkit-scrollbar-thumb:hover {
background: var(--action-dark);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment