From 32996c00dc7daa49f477e6c53a880ce8123aace1 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 24 Nov 2021 03:19:08 -0800 Subject: [PATCH] Fix border radius on input group buttons not applying --- src/components/shared/styled.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/styled.ts b/src/components/shared/styled.ts index de7bb65..d64907d 100644 --- a/src/components/shared/styled.ts +++ b/src/components/shared/styled.ts @@ -25,7 +25,7 @@ export const HeaderButton = styled(Button)` `; export const StyledButton = styled(Button)<{ width: number }>` - border-radius: ${(props) => props.theme.other?.button?.borderRadius}; + border-radius: ${(props) => props.theme.other?.button?.borderRadius} !important; background: ${(props) => props.appearance === 'primary' ? `${props.theme.colors.primary}`