diff --git a/src/lib/components/Toc/MobileToc.svelte b/src/lib/components/Toc/MobileToc.svelte index 06466d6..cf6d7d4 100644 --- a/src/lib/components/Toc/MobileToc.svelte +++ b/src/lib/components/Toc/MobileToc.svelte @@ -6,7 +6,7 @@ export let tocStore: TocStore; const calcTextClasses = (el: HTMLElement) => { - if (el.tagName === 'H1') return 'font-medium'; + if (el.tagName === 'H1') return 'text-lg font-medium'; if (el.tagName === 'H2') return 'text-lg'; return 'text-sm text-muted-foreground'; };