diff options
-rw-r--r-- | pages/_app.tsx | 1 | ||||
-rw-r--r-- | styles/globals.css | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/pages/_app.tsx b/pages/_app.tsx index f9cf556..119d817 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -23,6 +23,7 @@ export default function Blog({ Component, pageProps }) { return <> <Head> + <html lang='en-US' /> <link rel='preload' as='style' href='/font/font.css' onLoad={() => this.rel = 'stylesheet'} /> <meta property='og:url' content='https://blog.pipeframe.xyz' /> <meta property='og:type' content='website' /> diff --git a/styles/globals.css b/styles/globals.css index b195485..57282f4 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -6,6 +6,7 @@ html, body { color: var(--fg); font-family: "Inter", sans-serif; + hyphens: auto; } code { font-family: "JetBrainsMono", monospace; } |