From 940ba21476c97cf13d37f28452969edc6a09e387 Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 1 Jun 2026 20:58:02 +0000 Subject: [PATCH] Center pills within the reserved tag zone Single-row pill cards now sit centered in the two-row zone instead of pinned to the top, so they balance visually against two-row cards. Titles already aligned; this aligns the pills themselves. Co-Authored-By: Claude Opus 4.8 (1M context) --- frontend/src/lib/components/ArticleCard.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/ArticleCard.svelte b/frontend/src/lib/components/ArticleCard.svelte index 59e7a03..19e71df 100644 --- a/frontend/src/lib/components/ArticleCard.svelte +++ b/frontend/src/lib/components/ArticleCard.svelte @@ -107,7 +107,7 @@ across the grid, whether a card has 1, 2, or 3 tags. A hairline closes the zone. (The hero is its own layout and opts out.) */ .tile .tags { - align-items: flex-start; align-content: flex-start; + align-items: center; align-content: center; min-height: 48px; padding-bottom: 11px; margin-bottom: 2px; border-bottom: 1px solid var(--line); }