From eaf65130daae02072ee27496b70688dc7b3b7288 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 18 Sep 2020 07:16:16 -0700 Subject: [PATCH] Set the font family globally --- src/components/App/App.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/App/App.css b/src/components/App/App.css index 38901a4b..28994fc5 100644 --- a/src/components/App/App.css +++ b/src/components/App/App.css @@ -1,6 +1,9 @@ +* { + font-family: system-ui, -apple-system, Helvetica Neue, Helvetica, Arial, sans-serif; +} + html { background: #f5f5f5; - font-family: -apple-system, "Helvetica Neue", "Lucida Grande"; padding: 16px; }