Skip to content

Commit

Permalink
[GEN-1722]: Filter button weird focus-UI (#1768)
Browse files Browse the repository at this point in the history
Co-authored-by: Alon Braymok <138359965+alonkeyval@users.noreply.github.com>
  • Loading branch information
BenElferink and alonkeyval authored Nov 17, 2024
1 parent 7098118 commit e9fa5d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const StyledButton = styled(Button)<{ $withBorder: Props['withBorder']; $color:
text-transform: none;
text-decoration: none;
border: ${({ theme, $withBorder }) => `1px solid ${$withBorder ? theme.colors.border : 'transparent'}`};
background-color: ${({ theme, $color }) => $color || theme.colors.white_opacity['004']};
&.not-selected {
background-color: ${({ theme, $color }) => $color || theme.colors.white_opacity['004']};
&:hover {
background-color: ${({ theme, $hoverColor }) => $hoverColor || theme.colors.white_opacity['008']};
}
Expand Down

0 comments on commit e9fa5d7

Please sign in to comment.