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

18 lines
340 B
Svelte
Raw Normal View History

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