Browse Source

Fix border radius on input group button

master
jeffvli 3 years ago
parent
commit
7d230be3fe
  1. 2
      src/components/shared/styled.ts

2
src/components/shared/styled.ts

@ -116,7 +116,7 @@ export const StyledInputGroupButton = styled(InputGroup.Button)<{ height?: numbe
? `${props.theme.colors.button.default.colorHover}`
: `${props.theme.colors.button.subtle.colorHover} !important`};
}
border-radius: ${(props) => props.theme.other.input.borderRadius};
border-radius: ${(props) => props.theme.other.input.borderRadius} !important;
border-bottom-right-radius: ${(props) => props.theme.other.input.borderRadius} !important;
border-top-right-radius: ${(props) => props.theme.other.input.borderRadius} !important;
`;

Loading…
Cancel
Save