Skip to content

Commit

Permalink
Fix radio button appearance on small screens. (#14624)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjellr authored Mar 26, 2019
1 parent 9035024 commit c36069a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion assets/stylesheets/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,12 @@
border-radius: $radius-round;

&:checked::before {
margin: 3px 0 0 3px;
margin: 6px 0 0 6px;
background-color: $white;

@include break-medium() {
margin: -3px 0 0 -3px;
}
}
}

Expand Down

0 comments on commit c36069a

Please sign in to comment.