astro/examples/snowpack/public/css/_globals.scss
2021-03-25 18:23:45 -06:00

26 lines
255 B
SCSS

@use './var' as *;
html,
body {
margin: 0;
font-family: $body;
}
* {
box-sizing: border-box;
}
img {
max-width: 100%;
height: auto;
}
p {
line-height: 1.25;
}
.pretty-font,
.version-number {
font-weight: 600;
font-family: $heading;
}