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

Commit

Permalink
fix(dialog): changed translate3d to translate
Browse files Browse the repository at this point in the history
fixes #4544. Closes #6729
  • Loading branch information
EladBezalel authored and ThomasBurleson committed Jan 19, 2016
1 parent 5716340 commit 689a34d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/dialog/dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ md-dialog {
&.md-transition-in {
opacity: 1;
transition: $swift-ease-out;
transform: translate3d(0,0,0) scale(1.0);
transform: translate(0,0) scale(1.0);
}
&.md-transition-out {
opacity: 0;
transition: $swift-ease-out;
transform: translate3d(0,100%,0) scale(0.2);
transform: translate(0,100%) scale(0.2);
}

opacity: 0;
Expand Down

0 comments on commit 689a34d

Please sign in to comment.