Skip to content

Commit

Permalink
fix wallet items bg
Browse files Browse the repository at this point in the history
  • Loading branch information
vkulinich-cl committed Jul 1, 2024
1 parent 9aff43f commit 1a1f966
Showing 1 changed file with 9 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,16 @@ export const SWalletButton = styled.button<{
`
}
if (variant === "external") {
return css`
background: hsla(360, 100%, 100%, 0.05);
return css`
background: hsla(360, 100%, 100%, 0.05);
:hover {
background: hsla(360, 100%, 100%, 0.1);
}
:hover {
background: hsla(360, 100%, 100%, 0.1);
}
:active {
background: hsla(360, 100%, 100%, 0.12);
}
`
}
:active {
background: hsla(360, 100%, 100%, 0.12);
}
`
}}
`

0 comments on commit 1a1f966

Please sign in to comment.