2082001ff8
* Initial tests set up This adds tests using uvu (we can switch if people want) and restructures things a bit so that it's easier to test. Like in snowpack you set up a little project. In our tests you can say: ```js const result = await runtime.load('/blog/hello-world') ``` And analyze the result. I included a `test-helpers.js` which has a function that will turn HTML into a cheerio instance, for inspecting the result HTML. * Bring snowpack example in * Formatting
29 lines
314 B
SCSS
29 lines
314 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;
|
|
}
|
|
|
|
.header-logo,
|
|
.header-snowpack,
|
|
.header-snowpack-subtitle,
|
|
.pretty-font,
|
|
.version-number {
|
|
font-weight: 600;
|
|
font-family: $heading;
|
|
}
|