From c101a31520aba083a85edcb2f3269a826471007a Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 23 Sep 2022 13:59:39 +0200 Subject: Don't use explicitly Helvetica On many systems you get a poor substitute, so let's instead instruct the browser that we merely want a sans serif font for our interface. --- app/styles/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/styles/base.css b/app/styles/base.css index c9fde7a..0dc31f6 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -32,7 +32,7 @@ */ :root { - font-family: Helvetica; + font-family: sans-serif; } body { -- cgit v1.2.1