30 lines
389 B
SCSS
30 lines
389 B
SCSS
@use 'variables' as *;
|
|
@use 'colors' as *;
|
|
@use 'mixins';
|
|
@use 'classes';
|
|
@use 'components';
|
|
|
|
* {
|
|
font-family: $font-family;
|
|
}
|
|
|
|
separator {
|
|
background: $color0;
|
|
}
|
|
|
|
popover>contents, calendar {
|
|
background: $color5;
|
|
}
|
|
|
|
button, button:hover {
|
|
background: transparent;
|
|
}
|
|
|
|
popover modelbutton {
|
|
&:hover, &:focus { background: $color6; }
|
|
}
|
|
|
|
image {
|
|
padding: 0 0.25rem;
|
|
}
|