diff --git a/src/features/DisplayFont/ui/FontSampler/FontSampler.svelte b/src/features/DisplayFont/ui/FontSampler/FontSampler.svelte index 5413bfd..79b4e9c 100644 --- a/src/features/DisplayFont/ui/FontSampler/FontSampler.svelte +++ b/src/features/DisplayFont/ui/FontSampler/FontSampler.svelte @@ -82,7 +82,7 @@ const stats = $derived([ >
- + {String(index + 1).padStart(2, '0')} @@ -147,7 +147,7 @@ const stats = $derived([
{#each stats as stat, i} - + {stat.label}:{stat.value} {#if i < stats.length - 1} diff --git a/src/features/SetupFont/ui/TypographyMenu/TypographyMenu.svelte b/src/features/SetupFont/ui/TypographyMenu/TypographyMenu.svelte index 45540f2..654845c 100644 --- a/src/features/SetupFont/ui/TypographyMenu/TypographyMenu.svelte +++ b/src/features/SetupFont/ui/TypographyMenu/TypographyMenu.svelte @@ -113,7 +113,7 @@ $effect(() => {
CONTROLS @@ -166,7 +166,7 @@ $effect(() => { class="text-swiss-red" /> diff --git a/src/shared/ui/Section/SectionTitle/SectionTitle.svelte b/src/shared/ui/Section/SectionTitle/SectionTitle.svelte index 53325c0..aa266d1 100644 --- a/src/shared/ui/Section/SectionTitle/SectionTitle.svelte +++ b/src/shared/ui/Section/SectionTitle/SectionTitle.svelte @@ -13,7 +13,7 @@ interface Props { const { text }: Props = $props(); {#if text} -

+

{text}

{/if}