change default font to Courier

This commit is contained in:
mantikoros 2021-12-19 17:47:13 -06:00
parent 6270ec2c59
commit 481b97d689
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ export function Header(props: {
/> />
<div <div
className={clsx( className={clsx(
'font-major-mono lowercase mt-1 sm:text-2xl md:whitespace-nowrap', 'font-major-mono mt-1 sm:text-2xl md:whitespace-nowrap',
darkBackground && 'text-white' darkBackground && 'text-white'
)} )}
> >

View File

@ -8,7 +8,7 @@ module.exports = {
fontFamily: Object.assign( fontFamily: Object.assign(
{ ...defaultTheme.fontFamily }, { ...defaultTheme.fontFamily },
{ {
'major-mono': ['Major Mono Display', 'monospace'], 'major-mono': ['Courier', 'monospace'],
'readex-pro': ['Readex Pro', 'sans-serif'], 'readex-pro': ['Readex Pro', 'sans-serif'],
} }
), ),