* Material theme (dev) initial release * fix CSP * fix CSP (#268) * fix icon font path * 相対パスの修正 (#269) * fix CSP * fix icon font path * 相対パスの修正 (#270) * fix CSP * fix icon font path * fix font path * Revert "相対パスの修正 (#270)" (#271) This reverts commit27998a80fe. * Revert "相対パスの修正 (#269)" (#272) This reverts commitf864de23f4. * fix relative path * fix override settings * Add variation Update material theme Co-authored-by: YoheiZuho <yuuman002@gmail.com>
24 lines
525 B
SCSS
24 lines
525 B
SCSS
@charset "UTF-8";
|
|
@import 'config';
|
|
|
|
|
|
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;
|
|
} |