Skip to content

Commit

Permalink
Fix incorrect buttons colors on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
rtivital committed Mar 14, 2023
1 parent 9943aba commit 32855ba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/HomePage/Banner/Banner.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ export default createStyles((theme) => ({
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.yellow[4] : theme.colors.cyan[6],

'&:hover': {
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.yellow[4] : theme.colors.cyan[6],
backgroundColor: `${
theme.colorScheme === 'dark' ? theme.colors.yellow[4] : theme.colors.cyan[6]
} !important`,
},
},

Expand All @@ -87,7 +89,9 @@ export default createStyles((theme) => ({
color: theme.colorScheme === 'dark' ? theme.white : theme.black,

'&:hover': {
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark[4] : theme.white,
backgroundColor: `${
theme.colorScheme === 'dark' ? theme.colors.dark[4] : theme.white
} !important`,
},
},

Expand Down

0 comments on commit 32855ba

Please sign in to comment.