mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 20:08:26 +00:00
13 lines
295 B
SCSS
13 lines
295 B
SCSS
// Mixins
|
|
// --------------------------
|
|
|
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
|
transform: rotate($degrees);
|
|
-webkit-transform: rotate($degrees);
|
|
}
|
|
|
|
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
|
transform: scale($horiz, $vert);
|
|
-webkit-transform: scale($horiz, $vert);
|
|
}
|