Skip to content

Commit

Permalink
still display border on special buttons when pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
NatSquared committed Jun 3, 2024
1 parent 6fad17d commit b2e2e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion met-web/src/components/common/Input/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export const SecondaryButton: React.FC<ButtonProps> = ({
backgroundColor: darkBackgroundColor,
boxShadow: elevations.pressed,
color: darkTextColor,
border: 'none',
border: isCustom ? `1px solid ${customColor}` : `1px solid transparent`,
'&:focus-visible': {
boxShadow: elevations.pressed,
},
Expand Down

0 comments on commit b2e2e9e

Please sign in to comment.