Files
mastodon/app/javascript/styles/material-v2-light/theme/basics.scss
Rintan 414bd398ca update material theme
add plus theme
2020-05-17 15:47:52 +09:00

26 lines
605 B
SCSS

@charset "UTF-8";
@import 'base_config';
@import '../custom_config';
@import '../custom_color', '../custom_layout';
body { background: $background-color }
// Chrome & Safari scroll bar
::-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;
}
// Firefox scroll bar
html {
scrollbar-color: $scroll-bar-thumb-color transparent;
}