From 715cc88362e092cd96fbe741ccbc3fa23966b771 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Thu, 2 Jul 2026 11:12:11 -0400 Subject: [PATCH] fix: increase masthead rail shimmer visibility Bumped shimmer highlight opacity from 25% to 50% and reduced animation duration from 11s to 5s, matching the login page AuthCanvas shimmer precedent (via-white/60 at 4.5s). --- frontend/src/components/ui/MastheadRail.tsx | 2 +- frontend/src/index.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ui/MastheadRail.tsx b/frontend/src/components/ui/MastheadRail.tsx index f66e8622..b825b018 100644 --- a/frontend/src/components/ui/MastheadRail.tsx +++ b/frontend/src/components/ui/MastheadRail.tsx @@ -14,7 +14,7 @@ export function MastheadRail({ variant, className }: MastheadRailProps) { className={cn('absolute inset-y-0 left-0 w-[3px] overflow-hidden', className)} > {variant === 'shimmer' ? ( -
+
) : (
)} diff --git a/frontend/src/index.css b/frontend/src/index.css index 39a209a1..c7bbe578 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -743,7 +743,7 @@ body { animation: shimmer 4.5s ease-in-out infinite alternate; } .masthead-rail-shimmer { - animation: shimmer 11s ease-in-out infinite alternate; + animation: shimmer 5s ease-in-out infinite alternate; } .masthead-rail-glow { animation: masthead-rail-glow 5.5s ease-in-out infinite alternate;