1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-03 20:25:18 +02:00
AdventureLog/src/routes/+layout.svelte

19 lines
365 B
Svelte
Raw Normal View History

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