From 0ee517dc4643152ae6ba37c5ce3c467f4deb6b93 Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Sat, 19 Aug 2023 22:04:29 -0700 Subject: [PATCH] fix: put quotations around font --- quartz/util/theme.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quartz/util/theme.ts b/quartz/util/theme.ts index 8d7b727c..47951c4f 100644 --- a/quartz/util/theme.ts +++ b/quartz/util/theme.ts @@ -44,9 +44,9 @@ ${stylesheet.join("\n\n")} --tertiary: ${theme.colors.lightMode.tertiary}; --highlight: ${theme.colors.lightMode.highlight}; - --headerFont: ${theme.typography.header}, ${DEFAULT_SANS_SERIF}; - --bodyFont: ${theme.typography.body}, ${DEFAULT_SANS_SERIF}; - --codeFont: ${theme.typography.code}, ${DEFAULT_MONO}; + --headerFont: "${theme.typography.header}", ${DEFAULT_SANS_SERIF}; + --bodyFont: "${theme.typography.body}", ${DEFAULT_SANS_SERIF}; + --codeFont: "${theme.typography.code}", ${DEFAULT_MONO}; } :root[saved-theme="dark"] {