31 lines
440 B
SCSS
31 lines
440 B
SCSS
@use './theme_colors.scss' as *;
|
|
|
|
@use 'variables' as *;
|
|
@use 'mixins';
|
|
@use 'classes';
|
|
@use 'components';
|
|
|
|
* {
|
|
font-family: $font-family;
|
|
}
|
|
|
|
separator {
|
|
background: $base01;
|
|
}
|
|
|
|
popover>contents, calendar {
|
|
background: color-mix(in srgb, $base00, transparent 15%);
|
|
}
|
|
|
|
button, button:hover {
|
|
background: transparent;
|
|
}
|
|
|
|
popover modelbutton {
|
|
&:hover, &:focus { background: $base01; }
|
|
}
|
|
|
|
image {
|
|
padding: 0 0.25rem;
|
|
}
|