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

Merge pull request #11748 from bganicky/patch-1

Updated .scale() mixin so that it accepts optional vertical scale factor...
parents 12500047 9ce7e562
Showing with 4 additions and 4 deletions
+4 -4
...@@ -150,10 +150,10 @@ ...@@ -150,10 +150,10 @@
-ms-transform: rotate(@degrees); // IE9+ -ms-transform: rotate(@degrees); // IE9+
transform: rotate(@degrees); transform: rotate(@degrees);
} }
.scale(@ratio) { .scale(@ratio; @ratio-y...) {
-webkit-transform: scale(@ratio); -webkit-transform: scale(@ratio, @ratio-y);
-ms-transform: scale(@ratio); // IE9+ -ms-transform: scale(@ratio, @ratio-y); // IE9+
transform: scale(@ratio); transform: scale(@ratio, @ratio-y);
} }
.translate(@x; @y) { .translate(@x; @y) {
-webkit-transform: translate(@x, @y); -webkit-transform: translate(@x, @y);
......
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