From 9bfd96af2cf37328773ac51bef8c4e4c508fcaa4 Mon Sep 17 00:00:00 2001 From: Mischa Date: Sun, 21 Jun 2026 23:28:42 +0200 Subject: [PATCH] fix(trip): bump stat-label to --text-sm, widen stat-value fluid range MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Label: xs (12px) → sm (14px) for clearer hierarchy below the value. Value preferred: 5.5vw → 6vw so short values stay bold on mid phones. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01Vgmzx8VTTTmCskSpQtsLTr --- themes/intotheeast/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/intotheeast/css/style.css b/themes/intotheeast/css/style.css index 198acec..ba29639 100644 --- a/themes/intotheeast/css/style.css +++ b/themes/intotheeast/css/style.css @@ -601,7 +601,7 @@ body::after { .stat-value { display: block; font-family: var(--font-display); - font-size: clamp(var(--text-lg), 5.5vw, var(--text-3xl)); + font-size: clamp(var(--text-lg), 6vw, var(--text-3xl)); font-weight: 400; color: var(--color-accent); line-height: 1.1; @@ -611,7 +611,7 @@ body::after { .stat-label { display: block; - font-size: var(--text-xs); + font-size: var(--text-sm); font-weight: 600; color: var(--color-ink-muted); text-transform: uppercase;