Skip to content

Commit

Permalink
inputs background colour fix to #FFFFFF
Browse files Browse the repository at this point in the history
  • Loading branch information
shorn-gnosis committed May 14, 2024
1 parent 7de0fa8 commit 25fde0c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/components/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,21 +79,22 @@ const useStyles = makeStyles((theme) => {
padding: '11.5px 14px',
borderRadius: '25px',
color: theme.custom.colors.purple100,
background: theme.custom.colors.realwhite,
},

outlinedInputRoot: {
borderRadius: '25px',
border: `3px solid transparent`,
padding: '0px',
background: theme.custom.colors.white,
background: theme.custom.colors.realwhite,

'&:hover': {
'& .MuiOutlinedInput-notchedOutline': {
borderColor: textColor,
},

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

'&.Mui-error': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/TransferInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const useStyles = makeStyles((theme) => ({
height: 66,
boxShadow: theme.custom.shadows.greyUp,
color: theme.custom.colors.purple100,
background: theme.custom.colors.white,
background: theme.custom.colors.realwhite,

'& .MuiSvgIcon-root': {
fill: theme.custom.colors.purple100,
Expand Down
1 change: 1 addition & 0 deletions src/styles/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const foundation = {
purple500: '#C8C6E9',
purple600: '#E5E4F2',
white: '#F6F1ED',
realwhite: '#FFFFFF',
errorYellow: '#FFC834',
successGreen: '#05BF93',
};
Expand Down

0 comments on commit 25fde0c

Please sign in to comment.