mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-15 01:30:28 +08:00
Update _mixins.scss to fix $rotation sass var (#2429)
This should fix #2429 [https://github.com/FortAwesome/Font-Awesome/issues/2429].
This commit is contained in:
parent
0373b63c16
commit
be59d5e5fb
@ -2,7 +2,7 @@
|
|||||||
// --------------------------
|
// --------------------------
|
||||||
|
|
||||||
@mixin fa-icon-rotate($degrees, $rotation) {
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
||||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
||||||
-webkit-transform: rotate($degrees);
|
-webkit-transform: rotate($degrees);
|
||||||
-moz-transform: rotate($degrees);
|
-moz-transform: rotate($degrees);
|
||||||
-ms-transform: rotate($degrees);
|
-ms-transform: rotate($degrees);
|
||||||
@ -11,7 +11,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
||||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
|
||||||
-webkit-transform: scale($horiz, $vert);
|
-webkit-transform: scale($horiz, $vert);
|
||||||
-moz-transform: scale($horiz, $vert);
|
-moz-transform: scale($horiz, $vert);
|
||||||
-ms-transform: scale($horiz, $vert);
|
-ms-transform: scale($horiz, $vert);
|
||||||
|
Loading…
Reference in New Issue
Block a user