You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
394 B
SCSS
27 lines
394 B
SCSS
@import "defaults";
|
|
@import "variables";
|
|
|
|
// Webkit
|
|
::-webkit-scrollbar {
|
|
width: $padding-8;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: transparent;
|
|
border-radius: $padding-8;
|
|
}
|
|
|
|
:hover::-webkit-scrollbar-thumb {
|
|
background: var(--gray-500);
|
|
}
|
|
|
|
// MS
|
|
body {
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
}
|
|
|
|
// Future
|
|
.book-menu nav {
|
|
scrollbar-color: transparent var(--gray-500);
|
|
}
|