Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nurmuhammadsirat/f9f69caed201001c09c66a34a81cce5f to your computer and use it in GitHub Desktop.
Save nurmuhammadsirat/f9f69caed201001c09c66a34a81cce5f to your computer and use it in GitHub Desktop.
Nice scrollbar styling
const scrollBarStyle = `
&::-webkit-scrollbar {
width: 8px;
height: 8px;
}
&::-webkit-scrollbar-track {
background: #f6f6f6;
border-radius: 8px;
}
&::-webkit-scrollbar-thumb {
background: #e2e2e2;
border-radius: 8px;
}
&::-webkit-scrollbar-thumb:hover {
background: #c8c8c8;
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment