Web: Components: RadioButton: fix area click

This commit is contained in:
Viktor Fomin 2022-04-17 19:59:30 +03:00
parent c0406b0727
commit 407d976647
2 changed files with 1 additions and 2 deletions

View File

@ -108,7 +108,6 @@ RadioButtonGroup.defaultProps = {
selected: undefined,
spacing: "15px",
orientation: "horizontal",
width: "100%",
};
export default RadioButtonGroup;

View File

@ -17,7 +17,7 @@ const StyledDiv = styled(ClearDiv)`
`) ||
(props.orientation === "vertical" &&
css`
display: block;
display: inline-block;
`)};
width: ${(props) => props.width};