diff --git a/src/lib/components/StackView.svelte b/src/lib/components/StackView.svelte index 39c7f27c9..d3188d845 100644 --- a/src/lib/components/StackView.svelte +++ b/src/lib/components/StackView.svelte @@ -9,6 +9,9 @@ import config from '$lib/data/config'; import { isNotBlank, splitString } from '$lib/scripts/stringUtils'; import { handleHeaderLinkPressed } from '$lib/scripts/scripture-reference-utils'; + export let bodyFontSize; + export let bodyLineHeight; + export let font; let stack; let listening = false; $: PrimaryColor = $themeColors['PrimaryColor']; @@ -87,6 +90,10 @@ } } $: toggleListener($footnotes); + + $: fontSize = bodyFontSize + 'px'; + + $: lineHeight = bodyLineHeight + '%';