From 4040836a70788d282c2e2743afb5973efafe5b49 Mon Sep 17 00:00:00 2001 From: Blaine Motsinger Date: Sun, 5 May 2024 10:15:28 -0500 Subject: [PATCH] Update html font-family to generic web fonts Loading non-generic web fonts come with a higher risk of browser behavior changing the font behavior if fonts are not kept up to date. In this case, we were previously using the defaults set by the Skeleton CSS library, which admittedly is very out of date. In a newer version of Chrome, these non-standard fonts were behaving strangely, displaying italic in places not defined in the CSS. Updating to the generic web fonts makes the sections behave better without sacrificing too much consistency between browsers. --- public/css/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/public/css/main.css b/public/css/main.css index 992ac50..8acb1bc 100644 --- a/public/css/main.css +++ b/public/css/main.css @@ -2,6 +2,7 @@ body { color: #333; + font-family: Helvetica, Arial, sans-serif; } .container {