From 1f95a6579ddd1f5df1179814232232c1ad387e6c Mon Sep 17 00:00:00 2001 From: Jonathan Hvid Date: Tue, 12 May 2026 14:59:30 +0200 Subject: [PATCH] style: equalise wordmark heights, drop event 'closes' line, rename pulse eyebrow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three small tweaks: - AppLayout wordmark: 'Project' and 'Bifrost' now share font-size 18 + line-height 1.4 + tracking-snug via a combined selector. The previous asymmetry (Bifrost had display: inline-block + padding 4/0/2 + line-height: 1 to lift the gradient-clip box for the italic ascender) was visibly making Bifrost render slightly off-height vs Project. With parent line-height 1.4 the gradient-clip bbox is tall enough on its own; padding hack removed. - EventHeroCard footer status line drops the ' | CLOSES TUESDAY' trailer. The line now reads simply '{capacity} SEATS · {n} CONFIRMED'. closesDay variable and .hero-status-divider style both gone. - /pulse pulse-col eyebrow: 'This week's' → 'Pulse Vote'. Matches the more direct labelling everywhere else. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/components/EventHeroCard.astro | 7 ------- src/layouts/AppLayout.astro | 14 ++++---------- src/pages/pulse.astro | 2 +- 3 files changed, 5 insertions(+), 18 deletions(-) diff --git a/src/components/EventHeroCard.astro b/src/components/EventHeroCard.astro index f799f88..7b98018 100644 --- a/src/components/EventHeroCard.astro +++ b/src/components/EventHeroCard.astro @@ -24,7 +24,6 @@ const dayPadded = event ? String(parseUtc(event.starts_at).getUTCDate()).padSt const weekday = event ? fmt({ weekday: 'long' }, event.starts_at).toUpperCase() : ''; const monthShort = event ? fmt({ month: 'short' }, event.starts_at).toUpperCase() : ''; const startTime = event ? fmt({ hour: '2-digit', minute: '2-digit', hour12: false }, event.starts_at) : ''; -const closesDay = event ? fmt({ weekday: 'long' }, event.starts_at).toUpperCase() : ''; const visibleAttendees = attendees.slice(0, 3); const overflow = Math.max(0, attendees.length - visibleAttendees.length); @@ -72,8 +71,6 @@ const overflow = Math.max(0, attendees.length - visibleAttendees.length);