You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
420 B
17 lines
420 B
<script> |
|
import "../app.css"; |
|
import Navigation from "$lib/components/Navigation.svelte"; |
|
import { onMount } from "svelte"; |
|
|
|
// Compute viewport height. |
|
$: displayHeight = window.innerHeight; |
|
|
|
onMount(() => { |
|
document.body.style.height = `${displayHeight}px`; |
|
}); |
|
</script> |
|
|
|
<div class={'leather min-h-full w-full flex flex-col items-center'}> |
|
<Navigation class='sticky top-0' /> |
|
<slot /> |
|
</div>
|
|
|