15 lines
236 B
SCSS
15 lines
236 B
SCSS
@import "defaults";
|
|
@import "variables";
|
|
|
|
::-webkit-scrollbar {
|
|
width: $padding-8;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: transparent;
|
|
border-radius: $padding-8;
|
|
}
|
|
|
|
:hover::-webkit-scrollbar-thumb {
|
|
background: $gray-500;
|
|
}
|