Skip to content

Commit

Permalink
fix(components): Fix large button outline issue (#17415)
Browse files Browse the repository at this point in the history
* fix(components): Fix large button outline issue
  • Loading branch information
koji authored Feb 4, 2025
1 parent e2bc455 commit 645267a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/src/atoms/buttons/LargeButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
border: ${buttonType === 'stroke'
? `2px solid ${COLORS.blue55}`
: `${computedBorderStyle()}`};
: buttonType === 'primary'
? `4px solid ${COLORS.blue55}`
: computedBorderStyle()};
}
&:focus-visible {
Expand Down

0 comments on commit 645267a

Please sign in to comment.