fix(trip): raise stat-value clamp floor to 2rem (32px)

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:35:32 +02:00
parent 9b62f79301
commit 9ddf52c635
+1 -1
View File
@@ -601,7 +601,7 @@ body::after {
.stat-value {
display: block;
font-family: var(--font-display);
font-size: clamp(var(--text-xl), 6vw, var(--text-3xl));
font-size: clamp(2rem, 6vw, var(--text-3xl));
font-weight: 400;
color: var(--color-accent);
line-height: 1.1;