mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-04 04:35:19 +02:00
15 lines
238 B
Svelte
15 lines
238 B
Svelte
|
<script>
|
||
|
import Footer from "$lib/components/Footer.svelte";
|
||
|
</script>
|
||
|
|
||
|
<section>
|
||
|
<slot></slot>
|
||
|
</section>
|
||
|
<Footer />
|
||
|
|
||
|
<style>
|
||
|
section {
|
||
|
margin-bottom: 5rem;
|
||
|
/* gives the footer space! */
|
||
|
}
|
||
|
</style>
|