From 1f6ff423266896314d33c95039a5686369cda53b Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Fri, 8 Mar 2024 13:32:03 +0900 Subject: [PATCH] fix(ui): add non-versioned fontawesome 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. --- res/style/swappy.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/style/swappy.css b/res/style/swappy.css index c705661..66013b3 100644 --- a/res/style/swappy.css +++ b/res/style/swappy.css @@ -1,5 +1,5 @@ .drawing .text-button { - font-family: "FontAwesome 5 Free Solid"; + font-family: "FontAwesome 5 Free Solid", "FontAwesome"; padding: 4px; }