Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(radioButton): replaced inherit margin values with 0 Inherit is no…
Browse files Browse the repository at this point in the history
…t the proper value, 0 should be used instead Closes #7740

Closes #7770
  • Loading branch information
jayeshanandani authored and ThomasBurleson committed Mar 30, 2016
1 parent 2d020e1 commit d996176
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/radioButton/radio-button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ md-radio-group {
md-radio-button {
margin-top: 0;
margin-bottom: 0;
@include rtl(margin-left, inherit, $radio-margin);
@include rtl(margin-right, $radio-margin, inherit);
@include rtl(margin-left, 0, $radio-margin);
@include rtl(margin-right, $radio-margin, 0);

&:last-of-type {
@include rtl(margin-left, inherit, 0);
@include rtl(margin-right, 0, inherit);
margin-left: 0;
margin-right: 0;
}
}
}
Expand Down

0 comments on commit d996176

Please sign in to comment.