update for 0.15

This commit is contained in:
Rich Harris
2018-07-04 15:43:46 -04:00
parent 1dcad25401
commit 9c868f87a5
5 changed files with 96 additions and 97 deletions

View File

@@ -1,26 +0,0 @@
<Nav path={props.path}/>
<main>
<svelte:component this={Page} {...props}/>
</main>
<style>
main {
position: relative;
max-width: 56em;
background-color: white;
padding: 2em;
margin: 0 auto;
box-sizing: border-box;
}
</style>
<script>
import Nav from '../components/Nav.html';
export default {
components: {
Nav
}
};
</script>