Skip to content

Commit

Permalink
fix(ui): add non-versioned fontawesome
Browse files Browse the repository at this point in the history
The current css specifies "FontAwesome 5 Free Solid", for .drawing and
.text-button. This results in the button icons/fonts not rendering
correctly on systems that do not have that exact version of
FontAwesome. This change adds the more generic "FontAwesome" as an
option allowing the icons/fonts to be rendered correctly on these
systems.
  • Loading branch information
NickHastings authored and jtheoof committed Apr 8, 2024
1 parent 3e47066 commit 3941fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion res/style/swappy.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.drawing .text-button {
font-family: "FontAwesome 5 Free Solid";
font-family: "FontAwesome 5 Free Solid", "FontAwesome";
padding: 4px;
}

Expand Down

0 comments on commit 3941fec

Please sign in to comment.