From 1c965948491135d169587e615170ec62a74136c4 Mon Sep 17 00:00:00 2001 From: anderdc Date: Mon, 13 Jul 2026 12:13:35 -0500 Subject: [PATCH] fix(rates): bump mobile marquee to 25 px/s Nudge the shared Ticker scroll speed up a hair from 22 to 25 px/s. Follow-up to the marquee landed in #141. --- src/components/Ticker.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Ticker.tsx b/src/components/Ticker.tsx index 4cb5d01..f1dcb9c 100644 --- a/src/components/Ticker.tsx +++ b/src/components/Ticker.tsx @@ -15,8 +15,8 @@ const GAP = 2; // theme spacing between segments // Marquee speed. The duration is derived from the measured content width so both // strips scroll at the same pixels/second — a fixed duration made the wider // dashboard strip (it carries the EMA suffix) look faster than the narrower -// miners strip. ~22 px/s is a calm pace; MIN keeps very narrow content sane. -const PX_PER_SEC = 22; +// miners strip. ~25 px/s is a calm pace; MIN keeps very narrow content sane. +const PX_PER_SEC = 25; const MIN_DURATION_SEC = 8; // One pass of the segments. Two identical copies sit in the animated track and