Commit aa2cec6f authored by Mark Otto's avatar Mark Otto
Browse files

fixes #4178: translate3d instead of translate

parent 01572f00
Showing with 4 additions and 4 deletions
+4 -4
...@@ -291,10 +291,10 @@ ...@@ -291,10 +291,10 @@
transform: skew(@x, @y); transform: skew(@x, @y);
} }
.translate3d(@x, @y, @z) { .translate3d(@x, @y, @z) {
-webkit-transform: translate(@x, @y, @z); -webkit-transform: translate3d(@x, @y, @z);
-moz-transform: translate(@x, @y, @z); -moz-transform: translate3d(@x, @y, @z);
-o-transform: translate(@x, @y, @z); -o-transform: translate3d(@x, @y, @z);
transform: translate(@x, @y, @z); transform: translate3d(@x, @y, @z);
} }
// Backface visibility // Backface visibility
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment