Skip to content

Commit

Permalink
fix(DocsThemer): fix quote problem with serif/mono fonts (skeletonlab…
Browse files Browse the repository at this point in the history
  • Loading branch information
rakuzen25 authored Sep 8, 2023
1 parent 54f4ece commit 85002f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sites/skeleton.dev/src/lib/layouts/DocsThemer/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export const fontSettings: Record<string, string> = {
// Tailwind Sans-Serif
sans: `Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'`,
// Tailwind Serif
serif: `ui-serif, Georgia, Cambria, "Times New Roman", Times, serif`,
serif: `ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif`,
// Tailwind Mono
mono: `ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace`,
mono: `ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', "Courier New", monospace`,
// System UI
system: `system-ui`
};
Expand Down

0 comments on commit 85002f4

Please sign in to comment.