Skip to content

Instantly share code, notes, and snippets.

@mrjackphil
Created May 13, 2020 10:03
Show Gist options
  • Select an option

  • Save mrjackphil/3579a0e9e4162787cbfe4aaf974cea88 to your computer and use it in GitHub Desktop.

Select an option

Save mrjackphil/3579a0e9e4162787cbfe4aaf974cea88 to your computer and use it in GitHub Desktop.
Nice looking scrollbar styles for webkit browsers
#element {
overflow-x: overlay;
overflow-y: hidden;
scrollbar-width: thin;
}
#element::-webkit-scrollbar {
height: 5px;
width: 10px;
opacity: 0.5;
background: none;
}
#element::-webkit-scrollbar * {
background: transparent;
}
#element::-webkit-scrollbar-thumb {
background: #ffffff50 !important;
border-radius: 6px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment