svelte-playground/src/routes/__layout.svelte

28 lines
479 B
Svelte
Raw Normal View History

2021-08-01 21:33:31 +02:00
<script>
import Nav from "$lib/components/nav.svelte"
import Footer from "$lib/components/footer.svelte"
</script>
<div class="p-10 mx-auto flex flex-col items-center max-w-2xl site">
<Nav/>
<slot></slot>
<Footer/>
</div>
<style>
:global(a) {
text-decoration: none;
color : black
}
.site {
padding: 10px;
margin-left: auto;
margin-right: auto;
max-width: 50em;
display: flex;
flex-direction: column;
align-items: center;
}
</style>