Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/radio-button/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const RadioButton = ({
<IconContainer
background={radioStyles.containerColor}
borderColor={radioStyles.borderColor}
margin={children || label ? [0, 2, 0, 0] : null}
margin={children || label ? [0.5, 2, 0, 0] : null}
>
{showIcon && <StyledIcon name="dot" color={radioStyles.dotColor} {...iconProps} />}
</IconContainer>
Expand Down
8 changes: 4 additions & 4 deletions src/components/radio-button/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export const IconContainer = styled.div`
overflow: hidden;
flex: 0 0 auto;

height: 20px;
width: 20px;
height: 16px;
width: 16px;

box-sizing: border-box;
border: 1px solid ${props => getColor(props.borderColor)(props)};
Expand All @@ -47,6 +47,6 @@ export const IconContainer = styled.div`
`
export const StyledIcon = styled(Icon)`
fill: ${props => getColor(props.color)(props)};
height: 10px;
width: 10px;
height: 8px;
width: 8px;
`