TuiCss/src/components/scrollbar.scss
2019-09-06 00:07:44 -03:00

15 lines
308 B
SCSS

@import '../variables.scss';
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background-image: $scrool-image;
background-repeat: repeat;
}
::-webkit-scrollbar-thumb {
background-color: $scrool-color;
}
::-webkit-scrollbar-thumb:hover {
background-color: $scrool-color;
}