svelte-playground/src/routes/__layout.svelte

27 lines
422 B
Svelte

<script>
import Nav from "$lib/components/nav.svelte"
import Footer from "$lib/components/footer.svelte"
</script>
<div class="site">
<Nav/>
<slot></slot>
<Footer/>
</div>
<style>
:global(*) {
padding: 0px;
margin: 0px;
text-decoration: none;
color : black;
--gray: rgb(160, 160, 160);
--lightgray: rgb(240, 240, 240);
}
.site {
display: flex;
flex-direction: column;
}
</style>