fix(trip): raise stat-value clamp floor to --text-lg for visual hierarchy

14px floor was too close to the 12px label size. 1.375rem keeps the
value visually dominant over the label even at minimum size.

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:23:39 +02:00
parent c94e36a861
commit 000af6934f
+1 -1
View File
@@ -601,7 +601,7 @@ body::after {
.stat-value {
display: block;
font-family: var(--font-display);
font-size: clamp(var(--text-sm), 5.5vw, var(--text-3xl));
font-size: clamp(var(--text-lg), 5.5vw, var(--text-3xl));
font-weight: 400;
color: var(--color-accent);
line-height: 1.1;