22 lines
357 B
SCSS
Vendored
22 lines
357 B
SCSS
Vendored
// app.scss
|
|
|
|
// https://css-tricks.com/box-sizing/#article-header-id-6
|
|
// and https://css-tricks.com/rems-ems/
|
|
html {
|
|
box-sizing: border-box;
|
|
font-size: 24px;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
@import "layout";
|
|
@import "styles";
|
|
@import "pagination";
|
|
@import "note-form";
|
|
@import "mapbox";
|
|
@import "contacts";
|
|
@import "emoji";
|