Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
fix translate3d mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
ernscht committed Oct 7, 2014
1 parent 3aab63e commit 0e0dd33
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions assets/css/mixins.less
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@
}

.translate3d(@x, @y, @z) {
-webkit-transform: translate(@x, @y, @z);
-moz-transform: translate(@x, @y, @z);
-ms-transform: translate(@x, @y, @z);
-o-transform: translate(@x, @y, @z);
transform: translate(@x, @y, @z);
-webkit-transform: translate3d(@x, @y, @z);
-moz-transform: translate3d(@x, @y, @z);
-ms-transform: translate3d(@x, @y, @z);
-o-transform: translate3d(@x, @y, @z);
transform: translate3d(@x, @y, @z);
}

.animation(@animation) {
Expand Down

0 comments on commit 0e0dd33

Please sign in to comment.