20 lines
410 B
SCSS
20 lines
410 B
SCSS
@charset "UTF-8";
|
|
@import 'config';
|
|
|
|
|
|
body {
|
|
background: $background-color;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: $scroll-bar-thumb-color;
|
|
|
|
&:hover { background: $scroll-bar-thumb-hover-color }
|
|
&:active { background: $scroll-bar-thumb-active-color }
|
|
}
|
|
|
|
::-webkit-scrollbar-track,
|
|
::-webkit-scrollbar-track:hover,
|
|
::-webkit-scrollbar-track:active {
|
|
background: transparent !important;
|
|
} |