lbry-desktop/ui/scss/component/_scrollbar.scss
btzr-io 77536af503 add a better scrollbar style
now scrollbar don't affect navbar:

make it less annoying
2017-09-17 13:32:56 -06:00

25 lines
552 B
SCSS

::-webkit-scrollbar {
width: 6px;
overflow: auto;
}
::-webkit-scrollbar-track {
background: var(--scrollbar-track-bg);
border-radius: var(--scrollbar-radius);
margin: 16px 0;
}
::-webkit-scrollbar-thumb {
border-radius: var(--scrollbar-radius);
background-color: var(--scrollbar-thumb-bg);
transition: background-color 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--scrollbar-thumb-hover-bg);
}
::-webkit-scrollbar-thumb:active {
background-color: var(--scrollbar-thumb-active-bg);
}