Skip to content

Instantly share code, notes, and snippets.

@burgalon
Created July 20, 2020 08:49
Show Gist options
  • Save burgalon/94344fa9fc84c178f1df94066f300345 to your computer and use it in GitHub Desktop.
Save burgalon/94344fa9fc84c178f1df94066f300345 to your computer and use it in GitHub Desktop.
Scrollable custom bar hiding Windows scrollbars and overlaying scrollbars on top
.scrollable-y-with-hide {
overflow-y: hidden;
&:hover {
overflow-y: auto;
// https://stackoverflow.com/a/54979559/375050
// only for WebKit so that scrollbars do not take space and cause content to overflow
overflow-y: overlay;
}
&::-webkit-scrollbar-thumb {
background: hsla(0%, 0%, 0%, 0.4);
}
&::-webkit-scrollbar {
height: 8px;
width: 8px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment