This commit is contained in:
2023-04-02 20:47:31 +02:00
parent 5f208ec074
commit 1066ea51a9
4 changed files with 88 additions and 0 deletions

15
src/routes/+layout.svelte Normal file
View File

@ -0,0 +1,15 @@
<script lang="ts">
import FooterComponent from '$lib/components/FooterComponent.svelte'
</script>
<slot />
<div class="footer">
<FooterComponent />
</div>
<style>
.footer {
position: sticky;
bottom: 0px;
display: inline-block;
}
</style>