Skip to content

Commit

Permalink
Restore proper radio button appearance on desktop screens.
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 committed Mar 28, 2019
1 parent bde17b6 commit ddc3cff
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 ddc3cff

Please sign in to comment.