svelte-playground/src/routes/__layout.svelte

27 lines
422 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>
2021-08-01 22:40:32 +02:00
<div class="site">
2021-08-01 21:33:31 +02:00
<Nav/>
<slot></slot>
<Footer/>
</div>
<style>
2021-08-01 22:22:34 +02:00
:global(*) {
2021-08-01 22:40:32 +02:00
padding: 0px;
margin: 0px;
2021-08-01 21:33:31 +02:00
text-decoration: none;
2021-08-01 22:40:32 +02:00
color : black;
--gray: rgb(160, 160, 160);
--lightgray: rgb(240, 240, 240);
2021-08-01 21:33:31 +02:00
}
.site {
display: flex;
flex-direction: column;
}
</style>