Skip to content

Instantly share code, notes, and snippets.

@livemehere
Created March 25, 2024 06:12
Show Gist options
  • Save livemehere/34c80666d2c3952fe15538f3d6a5df8a to your computer and use it in GitHub Desktop.
Save livemehere/34c80666d2c3952fe15538f3d6a5df8a to your computer and use it in GitHub Desktop.
Customize scroll bar
* {
&::-webkit-scrollbar {
width: 12px;
background:red;
}
&::-webkit-scrollbar-thumb {
background:blue;
border-radius: 18px;
border: 2px solid transparent;
background-clip: padding-box;
}
}
@livemehere
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment