Skip to content

Commit

Permalink
Merge pull request #4987 from Abradoks/mdl-1.x
Browse files Browse the repository at this point in the history
_radio.scss: scale() instead of scale3d()
  • Loading branch information
sgomes committed Dec 20, 2016
2 parents aaf6966 + 388336c commit 70fdbc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/radio/_radio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@

@include material-animation-default(0.28s);
transition-property: transform;
transform: scale3d(0, 0, 0);
transform: scale(0, 0);

border-radius: 50%;
background: $radio-color;

.mdl-radio.is-checked & {
transform: scale3d(1, 1, 1);
transform: scale(1, 1);
}

fieldset[disabled] .mdl-radio &,
Expand Down

0 comments on commit 70fdbc8

Please sign in to comment.