From 15b51895e5c1edba53f1d105e31f95bb57d76543 Mon Sep 17 00:00:00 2001 From: Shorn Date: Wed, 8 May 2024 17:37:30 +0200 Subject: [PATCH] removing input field blue bg --- src/components/Input.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/components/Input.js b/src/components/Input.js index c1a9b23b..6930fe3f 100644 --- a/src/components/Input.js +++ b/src/components/Input.js @@ -22,8 +22,8 @@ const useStyles = makeStyles((theme) => { const backgroundColor = (isOrganization) => { return isOrganization - ? theme.custom.colors.purple600 - : theme.custom.colors.blue600; + ? theme.custom.colors.purple100 + : theme.custom.colors.blue100; }; return { @@ -50,8 +50,7 @@ const useStyles = makeStyles((theme) => { }, '&:has(+ .MuiOutlinedInput-root:hover)': { - // background: backgroundColor, - background: theme.custom.colors.white, + background: backgroundColor, }, '&:has(+ .MuiOutlinedInput-root.Mui-error:hover)': { @@ -93,8 +92,7 @@ const useStyles = makeStyles((theme) => { }, '& .MuiOutlinedInput-input': { - // background: backgroundColor, - background: theme.custom.colors.white, + background: backgroundColor, }, '&.Mui-error': {