From 13e22c9f34035b58ed7c02eb7e8103100df1ea43 Mon Sep 17 00:00:00 2001 From: Damien Date: Thu, 27 Feb 2025 02:37:56 -0500 Subject: [PATCH] fix: colors --- src/components/SocialIcons.tsx | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/components/SocialIcons.tsx b/src/components/SocialIcons.tsx index 242fe4b..cf98447 100644 --- a/src/components/SocialIcons.tsx +++ b/src/components/SocialIcons.tsx @@ -156,7 +156,7 @@ const SocialIcons: React.FC = ({ // Handle name submission const handleSubmit = () => { if (name === 'cali-coast') { - window.location.href = 'https://0.0.0.0/'; + window.location.href = 'https://calicoastrp.d4m13n.dev/'; } else { setError(true); } @@ -242,11 +242,30 @@ const SocialIcons: React.FC = ({ onChange={(e) => setName(e.target.value)} error={error} helperText={error ? "Invalid customer name" : ""} + sx={{ + '& .MuiOutlinedInput-root': { + '&.Mui-focused fieldset': { + borderColor: '#4fd1ff', + }, + }, + '& .MuiInputLabel-root.Mui-focused': { + color: '#4fd1ff', + }, + }} /> -