Skip to content

Commit

Permalink
removing input field blue bg
Browse files Browse the repository at this point in the history
  • Loading branch information
shorn-gnosis committed May 8, 2024
1 parent a0cac9c commit 15b5189
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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)': {
Expand Down Expand Up @@ -93,8 +92,7 @@ const useStyles = makeStyles((theme) => {
},

'& .MuiOutlinedInput-input': {
// background: backgroundColor,
background: theme.custom.colors.white,
background: backgroundColor,
},

'&.Mui-error': {
Expand Down

0 comments on commit 15b5189

Please sign in to comment.