25 lines
355 B
SCSS
25 lines
355 B
SCSS
body {
|
|
@include font-body;
|
|
color: var(--color__body);
|
|
background-color: var(--color-bg);
|
|
|
|
font-size: $font-size-body--xxs;
|
|
line-height: $line-height-body;
|
|
|
|
@media (min-width: $bp-xs) {
|
|
font-size: $font-size-body;
|
|
}
|
|
}
|
|
|
|
// NOTE these correspond to base styles in milligram/src/_Base.css
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
@include font-title;
|
|
}
|
|
|