Skip to content

Commit

Permalink
RadioControl: Fix shrinking radio controls
Browse files Browse the repository at this point in the history
  • Loading branch information
tyxla committed May 8, 2024
1 parent 2021ed8 commit 648b532
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/base-styles/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,14 @@
border-radius: $radius-round;
width: $radio-input-size-sm;
height: $radio-input-size-sm;
min-width: $radio-input-size-sm;
max-width: $radio-input-size-sm;

@include break-small() {
height: $radio-input-size;
width: $radio-input-size;
min-width: $radio-input-size;
max-width: $radio-input-size;
}

&:checked::before {
Expand Down

0 comments on commit 648b532

Please sign in to comment.