Files
vega-frontend-monorepo/libs/ui-toolkit/src/components/tiny-scroll/tiny-scroll.module.scss
T

23 lines
455 B
SCSS

$scrollbar-width: 6px;
/* Works on Firefox */
.scroll {
scrollbar-width: thin;
scrollbar-color: #999 #333;
}
/* Works on Chrome, Edge, and Safari */
.scroll::-webkit-scrollbar {
width: $scrollbar-width;
background-color: #999;
}
.scroll::-webkit-scrollbar-thumb {
width: $scrollbar-width;
background-color: #333;
}
.scroll::-webkit-scrollbar-track {
box-shadow: inset 0 0 #{$scrollbar-width} rgb(0 0 0 / 30%);
background-color: #999;
}