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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Vgmzx8VTTTmCskSpQtsLTr
This commit is contained in:
2026-06-21 23:33:06 +02:00
parent 64aa9ec023
commit 9b62f79301
+1 -1
View File
@@ -601,7 +601,7 @@ body::after {
.stat-value { .stat-value {
display: block; display: block;
font-family: var(--font-display); 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; font-weight: 400;
color: var(--color-accent); color: var(--color-accent);
line-height: 1.1; line-height: 1.1;