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

Commit d996176

Browse files
jayeshanandaniThomasBurleson
authored andcommitted
fix(radioButton): replaced inherit margin values with 0 Inherit is not the proper value, 0 should be used instead Closes #7740
Closes #7770
1 parent 2d020e1 commit d996176

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/radioButton/radio-button.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,12 @@ md-radio-group {
130130
md-radio-button {
131131
margin-top: 0;
132132
margin-bottom: 0;
133-
@include rtl(margin-left, inherit, $radio-margin);
134-
@include rtl(margin-right, $radio-margin, inherit);
133+
@include rtl(margin-left, 0, $radio-margin);
134+
@include rtl(margin-right, $radio-margin, 0);
135135

136136
&:last-of-type {
137-
@include rtl(margin-left, inherit, 0);
138-
@include rtl(margin-right, 0, inherit);
137+
margin-left: 0;
138+
margin-right: 0;
139139
}
140140
}
141141
}

0 commit comments

Comments
 (0)