Skip to content

Commit

Permalink
Restore proper radio button appearance on desktop screens. (#14684)
Browse files Browse the repository at this point in the history
PR #14624 mistakenly used negative pixel values for the position of the dot inside of radio buttons. This PR restores the correct values, to ensure proper placement.
  • Loading branch information
kjellr authored Mar 28, 2019
1 parent 4c600b0 commit 91b0c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/stylesheets/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
background-color: $white;

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

0 comments on commit 91b0c41

Please sign in to comment.