From 7edd2f79469929dcd02b44cfd73eef5694e7ee89 Mon Sep 17 00:00:00 2001 From: dotta Date: Wed, 8 Apr 2026 07:33:27 -0500 Subject: [PATCH] fix(ui): add pause between shimmer animation repeats The sweep now completes at 60% of the cycle and holds for the remaining 40%, giving a ~1s pause before repeating. Total cycle duration increased from 1.5s to 2.5s. Co-Authored-By: Paperclip --- ui/src/index.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/src/index.css b/ui/src/index.css index c1b9026a..70f2edb3 100644 --- a/ui/src/index.css +++ b/ui/src/index.css @@ -297,6 +297,7 @@ /* Shimmer text effect for active "Working" state — Cursor-style sweep */ @keyframes shimmer-text-slide { 0% { background-position: 100% center; } + 60% { background-position: 0% center; } 100% { background-position: 0% center; } } @@ -315,7 +316,7 @@ -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; - animation: shimmer-text-slide 1.5s linear infinite; + animation: shimmer-text-slide 2.5s linear infinite; } @media (prefers-reduced-motion: reduce) {