Skip to content

Commit

Permalink
fix: Emojis weren't rendering in headers or mono
Browse files Browse the repository at this point in the history
  • Loading branch information
TEParsons committed Oct 6, 2024
1 parent aec8e9a commit 8f39adf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mkdocs_landing/partials/head_config.html
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 8f39adf

Please sign in to comment.