Commit 0ec738a4 authored by vignesh mohankumar's avatar vignesh mohankumar Committed by GitHub

fix: update hover states in control CurrencyInputSelector (#4815)

parent 904f6e22
...@@ -104,11 +104,11 @@ const CurrencySelect = styled(ButtonGray)<{ ...@@ -104,11 +104,11 @@ const CurrencySelect = styled(ButtonGray)<{
!redesignFlag && !redesignFlag &&
css` css`
&:hover { &:hover {
background-color: ${({ theme }) => (selected ? darken(0.05, theme.deprecated_primary1) : theme.deprecated_bg3)}; background-color: ${({ theme }) => (selected ? theme.deprecated_bg3 : darken(0.05, theme.deprecated_primary1))};
} }
&:active { &:active {
background-color: ${({ theme }) => (selected ? darken(0.05, theme.deprecated_primary1) : theme.deprecated_bg3)}; background-color: ${({ theme }) => (selected ? theme.deprecated_bg3 : darken(0.05, theme.deprecated_primary1))};
} }
`} `}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment