From 9555dc1fefa71f914023ac33e6c0fd581e379959 Mon Sep 17 00:00:00 2001 From: Valentyne Stigloher Date: Mon, 17 Feb 2025 12:51:34 +0100 Subject: [PATCH] (style) fix font names containing spaces --- app.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.vue b/app.vue index 17e8c297b..5433e7370 100644 --- a/app.vue +++ b/app.vue @@ -20,8 +20,8 @@ useHead({ style: [{ textContent: `:root { - --font-headings: ${config.style.fontHeadings.join(', ')}; - --font-text: ${config.style.fontText.join(', ')}; + --font-headings: ${config.style.fontHeadings.map((font) => `'${font}'`).join(',')}; + --font-text: ${config.style.fontText.map((font) => `'${font}'`).join(',')}; }`, }], link: [