From 8f39adfc12c02e84c91155e81d0f598e2bb97f4d Mon Sep 17 00:00:00 2001 From: Todd Parsons Date: Sun, 6 Oct 2024 14:25:52 +0100 Subject: [PATCH] fix: Emojis weren't rendering in headers or mono --- mkdocs_landing/partials/head_config.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mkdocs_landing/partials/head_config.html b/mkdocs_landing/partials/head_config.html index 6f800c7..110d247 100644 --- a/mkdocs_landing/partials/head_config.html +++ b/mkdocs_landing/partials/head_config.html @@ -105,10 +105,10 @@ --overlay-text: {{config.theme.overlay_text_color}}; --footer-text: var(--hltext); /* fonts */ - --heading: {{config.theme.heading_font}}; - --body: {{config.theme.body_font}}; - --mono: {{config.theme.mono_font}}; - font-family: var(--body), {{config.theme.emoji_font}}; + --heading: {{config.theme.heading_font}}, {{config.theme.emoji_font}}; + --body: {{config.theme.body_font}}, {{config.theme.emoji_font}}; + --mono: {{config.theme.mono_font}}, {{config.theme.emoji_font}}; + font-family: var(--body); } /* dark mode */ @media (prefers-color-scheme: dark) {