Skip to content

Commit

Permalink
feat(radio-button): stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
ogermain-kronos committed Jul 12, 2024
1 parent 51d97f1 commit e7cdd76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/radio-button/radio-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ const StyledInput = styled.input<{ disabled?: boolean }>`
border-radius: 50%;
color: ${({ theme, disabled }) => (disabled ? theme.component['radio-button-disabled-background-color'] : theme.component['radio-button-background-color'])};
display: inline-block;
flex-shrink: 0;
height: var(--size-1x);
margin: 0;
margin-top: var(--spacing-half);
position: relative;
width: var(--size-1x);
flex-shrink: 0;
margin-top: var(--spacing-half);
${(theme) => focus(theme, { selector: '+' })}
Expand Down

0 comments on commit e7cdd76

Please sign in to comment.