From 5f190964b42d2b6ebeb8ef08c55a0312d1f5f57e Mon Sep 17 00:00:00 2001 From: gitea Date: Wed, 19 Nov 2025 23:14:38 +0100 Subject: [PATCH] lint --- components/Footer.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/components/Footer.tsx b/components/Footer.tsx index 122885e..ac3fb35 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -34,11 +34,8 @@ export default function Footer() { required value={email} onChange={(e) => setEmail(e.target.value)} - className="w-full px-4 py-2 rounded-lg text-white outline-none" + className="w-full px-4 py-2 rounded-lg text-white outline-none transition-all" style={{ backgroundColor: '#7D6E5E', borderColor: '#7D6E5E', color: '#FBF7F4' }} - placeholder="Email*" - onFocus={(e) => { e.target.style.borderColor = '#EED2CC'; e.target.style.boxShadow = '0 0 0 2px rgba(238, 210, 204, 0.3)'; }} - onBlur={(e) => { e.target.style.borderColor = '#7D6E5E'; e.target.style.boxShadow = 'none'; }} />