From 8e228d3c5f35989080b1d77079a28561fdceb403 Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 12 Jun 2026 13:34:21 +0200 Subject: [PATCH] fix(geschichten): restore uppercase tracking-wider on filter pills The All pill and active person-chip buttons lost uppercase + tracking-wider relative to the DocumentFilterChip pattern. Restore them to maintain visual consistency across all filter pill variants. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/routes/geschichten/+page.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/geschichten/+page.svelte b/frontend/src/routes/geschichten/+page.svelte index 35ea31fa..d14f950e 100644 --- a/frontend/src/routes/geschichten/+page.svelte +++ b/frontend/src/routes/geschichten/+page.svelte @@ -80,7 +80,7 @@ function removeDocument() { type="button" aria-pressed={!hasFilters} onclick={clearAll} - class="inline-flex h-11 items-center rounded-full border border-line px-3 font-sans text-xs font-semibold text-ink-2 hover:bg-muted aria-pressed:border-primary aria-pressed:bg-primary aria-pressed:text-primary-fg" + class="inline-flex h-11 items-center rounded-full border border-line px-3 font-sans text-xs font-semibold tracking-wider text-ink-2 uppercase hover:bg-muted aria-pressed:border-primary aria-pressed:bg-primary aria-pressed:text-primary-fg" > {m.geschichten_filter_all_pill()} @@ -91,7 +91,7 @@ function removeDocument() { aria-pressed="true" aria-label={m.geschichten_filter_remove_chip({ name: p.displayName })} onclick={() => removePerson(p.id!)} - class="inline-flex h-11 items-center gap-1.5 rounded-full border border-primary bg-primary px-3 font-sans text-xs font-semibold text-primary-fg" + class="inline-flex h-11 items-center gap-1.5 rounded-full border border-primary bg-primary px-3 font-sans text-xs font-semibold tracking-wider text-primary-fg uppercase" > {p.displayName}