From b49ee603def8c3f461191640cdcc8307cb877e9f Mon Sep 17 00:00:00 2001 From: Evangelos Lamprou Date: Thu, 19 Oct 2023 23:36:44 +0200 Subject: [PATCH] Restore font typefaces --- frontend/src/Main.elm | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm index 5d753b1..8e9b817 100644 --- a/frontend/src/Main.elm +++ b/frontend/src/Main.elm @@ -107,10 +107,15 @@ main = , body = [ view model |> layout - [ Font.family - [ Font.typeface "monospace" - , Font.typeface "Apple Color Emoji" - ] + [ Font.family + [ Font.typeface "system-ui" + , Font.typeface "-apple-system" + , Font.typeface "BlinkMacSystemFont" + , Font.typeface "Segoe UI" + , Font.typeface "Roboto" + , Font.typeface "Helvetica" + , Font.typeface "Arial" + , Font.sansSerif , clipX ] ]