mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 16:48:51 -05:00
10 lines
221 B
SCSS
10 lines
221 B
SCSS
// Mixins
|
|
// --------------------------
|
|
|
|
@mixin fa-icon-rotate($degrees, $rotation) {
|
|
transform: rotate($degrees);
|
|
}
|
|
|
|
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
|
transform: scale($horiz, $vert);
|
|
}
|