diff --git a/src/lib/components/TitlePageLayout.svelte b/src/lib/components/TitlePageLayout.svelte index 5b52434..53c48a2 100644 --- a/src/lib/components/TitlePageLayout.svelte +++ b/src/lib/components/TitlePageLayout.svelte @@ -11,14 +11,30 @@ export let tagline: string; export let overview: string; + + let bottomHeight: number; + let windowHeight: number; + let imageHeight: number; + $: imageHeight = windowHeight - bottomHeight * 0.3; -