From 79787627a65f4f8d21f2a4188388c719ce0932b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mime=20=C4=8Cuvalo?= Date: Sun, 28 Apr 2024 09:11:29 +0100 Subject: [PATCH] fix up font ordering --- styles/typography.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/typography.ts b/styles/typography.ts index 3d351f0..f2a280d 100644 --- a/styles/typography.ts +++ b/styles/typography.ts @@ -1,7 +1,7 @@ import { spacing } from './constants'; const SYSTEM_FONTS = - 'var(--font-noto-color-emoji), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'; + 'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif, var(--font-noto-color-emoji), "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'; const MONOSPACE_FONTS = 'Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace, var(--font-noto-color-emoji), "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"';