Fix font icon line-height

We forgot to include this property when replacing our use of `%fa-icon`,
and it was causing the admin menu to have a blank space at the bottom.

So we're including it again to make sure nothing else breaks because of
this omition.
This commit is contained in:
Javi Martín
2021-07-02 18:33:15 +02:00
parent d8e9dcb92d
commit 53d49c223e
2 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,8 @@
@import "font-awesome-sprockets"; @import "font-awesome-sprockets";
@import "font-awesome/variables"; @import "font-awesome/variables";
@import "font-awesome/path"; @import "font-awesome/path";
@import "font-awesome/mixins";
@import "font-awesome/core";
@import "jquery-ui/autocomplete"; @import "jquery-ui/autocomplete";
@import "jquery-ui/datepicker"; @import "jquery-ui/datepicker";
@import "jquery-ui/sortable"; @import "jquery-ui/sortable";

View File

@@ -1,5 +1,5 @@
%font-icon { %font-icon {
display: inline-block; @extend %fa-icon;
font-family: "Font Awesome 5 Free"; font-family: "Font Awesome 5 Free";
vertical-align: middle; vertical-align: middle;
} }