Skip to content

Commit 645267a

Browse files
authored
fix(components): Fix large button outline issue (#17415)
* fix(components): Fix large button outline issue
1 parent e2bc455 commit 645267a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/src/atoms/buttons/LargeButton.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
206206
207207
border: ${buttonType === 'stroke'
208208
? `2px solid ${COLORS.blue55}`
209-
: `${computedBorderStyle()}`};
209+
: buttonType === 'primary'
210+
? `4px solid ${COLORS.blue55}`
211+
: computedBorderStyle()};
210212
}
211213
212214
&:focus-visible {

0 commit comments

Comments
 (0)