Skip to content

Commit

Permalink
fix: set fallback fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
raulsteurer committed Nov 13, 2024
1 parent 2e98442 commit 14cce47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/constants/customizations.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { BREAKPOINT_LG, BREAKPOINT_MD, BREAKPOINT_SM, BREAKPOINT_XL } from './breakpoints';

export const FONTS = {
body: 'Inter',
display: 'Raleway',
heading: 'Inter',
mono: 'Space Mono',
body: 'Inter, ui-sans-serif, system-ui, sans-serif',
display: 'Raleway, ui-sans-serif, system-ui, sans-serif',
heading: 'Inter, ui-sans-serif, system-ui, sans-serif',
mono: 'Space Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace',
};

export const FONT_SIZES = {
Expand Down

0 comments on commit 14cce47

Please sign in to comment.