15 lines
308 B
SCSS
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;
|
|
} |