set up initial styling and structure

This commit is contained in:
wompmacho
2020-11-06 05:13:23 -05:00
parent 0ba096f62d
commit bffc8fff30
24 changed files with 10567 additions and 146 deletions

View File

@@ -1,22 +1,25 @@
<script>
import Nav from '../components/Nav.svelte';
import Footer from '../components/Footer.svelte';
export let segment;
</script>
<style>
main {
position: relative;
max-width: 56em;
background-color: white;
max-width: 60em;
background-color: #252526 !important;
padding: 2em;
margin: 0 auto;
box-sizing: border-box;
margin-top: 1em;
}
</style>
<Nav {segment}/>
<Nav {segment}></Nav>
<main>
<main class="shadow p-3 mb-5 bg-white rounded">
<slot></slot>
</main>
</main>
<Footer></Footer>