prep for 0.21

This commit is contained in:
Rich Harris
2018-09-19 16:25:59 -04:00
parent 1a02adb6fe
commit 8e3a89468e
25 changed files with 79 additions and 81 deletions

29
src/routes/_error.html Normal file
View File

@@ -0,0 +1,29 @@
<svelte:head>
<title>{status}</title>
</svelte:head>
<h1>{status}</h1>
<p>{error.message}</p>
<style>
h1, p {
margin: 0 auto;
}
h1 {
font-size: 2.8em;
font-weight: 700;
margin: 0 0 0.5em 0;
}
p {
margin: 1em auto;
}
@media (min-width: 480px) {
h1 {
font-size: 4em;
}
}
</style>