From f0aca773eb8f803c167037ecae149d74b91fb123 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sun, 1 Feb 2026 21:31:52 +0000 Subject: [PATCH] Remove unused animate-gradient-x CSS animation The gradient-x animation was no longer used after simplifying gradients to solid colors throughout the application. --- frontend-modern/src/index.css | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/frontend-modern/src/index.css b/frontend-modern/src/index.css index 539acac8b..9e11c5474 100644 --- a/frontend-modern/src/index.css +++ b/frontend-modern/src/index.css @@ -456,23 +456,6 @@ body, animation: float 6s ease-in-out infinite; } -@keyframes gradient-x { - - 0%, - 100% { - background-size: 200% 200%; - background-position: left center; - } - - 50% { - background-size: 200% 200%; - background-position: right center; - } -} - -.animate-gradient-x { - animation: gradient-x 3s ease infinite; -} .delay-100 { animation-delay: 100ms;