1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-04 04:35:19 +02:00
AdventureLog/src/routes/+layout.svelte

15 lines
238 B
Svelte
Raw Normal View History

<script>
import Footer from "$lib/components/Footer.svelte";
</script>
<section>
<slot></slot>
</section>
<Footer />
<style>
section {
margin-bottom: 5rem;
/* gives the footer space! */
}
</style>