mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
fixes #4885: correct use of skew in .skew() mixin for FF
This commit is contained in:
parent
de36456f5d
commit
a1d2ee6542
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@
|
|||
.skew(@x, @y) {
|
||||
-webkit-transform: skew(@x, @y);
|
||||
-moz-transform: skew(@x, @y);
|
||||
-ms-transform: skew(@x, @y);
|
||||
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twitter/bootstrap/issues/4885
|
||||
-o-transform: skew(@x, @y);
|
||||
transform: skew(@x, @y);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue