From 9b62f7930134f0b7c6f8608e9080a8ad6a23f5a2 Mon Sep 17 00:00:00 2001 From: Mischa Date: Sun, 21 Jun 2026 23:33:06 +0200 Subject: [PATCH] fix(trip): raise stat-value clamp floor to --text-xl (1.75rem) 22px floor was too close to the preferred at 375px (6vw=22.5px), so values were pinned near the minimum. 28px floor makes values pop more on small screens while long values like ~12,366 still wrap gracefully. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01Vgmzx8VTTTmCskSpQtsLTr --- themes/intotheeast/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/intotheeast/css/style.css b/themes/intotheeast/css/style.css index 7b56075..24fae26 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), 6vw, var(--text-3xl)); + font-size: clamp(var(--text-xl), 6vw, var(--text-3xl)); font-weight: 400; color: var(--color-accent); line-height: 1.1;