From 786d4946701815d017c0d2e0e50ec67d28b51eed Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Mon, 9 Mar 2026 23:10:50 -0500 Subject: [PATCH] fix(docs): fix gradient fill direction so it ends on gradient, not white Gradient on left half of background, white on right. Animation sweeps from white to gradient. Uses 'both' fill mode for correct state during delay and after completion. Co-Authored-By: Claude Opus 4.6 --- docs/website/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/website/style.css b/docs/website/style.css index 2131f3c..bd89cb1 100644 --- a/docs/website/style.css +++ b/docs/website/style.css @@ -369,13 +369,13 @@ ul, ol { } .hero-title .gradient-text { - background: linear-gradient(90deg, var(--text-primary) 50%, var(--accent) 50%, var(--accent-secondary) 100%); + background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--text-primary) 50%); background-size: 200% 100%; background-position: 100% 0; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; - animation: gradient-fill 1.2s ease-out 0.3s forwards; + animation: gradient-fill 1.2s ease-out 0.3s both; } @keyframes gradient-fill {