31 lines
410 B
SCSS
31 lines
410 B
SCSS
@use '../../../theme_colors.scss' as *;
|
|
|
|
@use 'variables' as *;
|
|
@use 'mixins';
|
|
@use 'classes';
|
|
@use 'components';
|
|
|
|
* {
|
|
font-family: $font-family;
|
|
}
|
|
|
|
separator {
|
|
background: $base00;
|
|
}
|
|
|
|
popover>contents, calendar {
|
|
background: $base0B;
|
|
}
|
|
|
|
button, button:hover {
|
|
background: transparent;
|
|
}
|
|
|
|
popover modelbutton {
|
|
&:hover, &:focus { background: $base0C; }
|
|
}
|
|
|
|
image {
|
|
padding: 0 0.25rem;
|
|
}
|