1 parent fb01494 commit 180ede2Copy full SHA for 180ede2
2 files changed
apps/web/app/layout.tsx
@@ -116,7 +116,7 @@ export default async function RootLayout({ children }: { children: React.ReactNo
116
<head nonce={nonce}>
117
<style>{`
118
:root {
119
- --font-sans: ${interFont.style.fontFamily.replace(/\'/g, "")};
+ --font-sans: ${interFont.style.fontFamily.replace(/\'/g, "")}, system-ui;
120
--font-cal: ${calFont.style.fontFamily.replace(/\'/g, "")};
121
}
122
`}</style>
apps/web/components/PageWrapper.tsx
@@ -89,7 +89,7 @@ function PageWrapper(props: AppProps) {
89
90
<style jsx global>{`
91
92
- --font-sans: ${interFont.style.fontFamily};
+ --font-sans: ${interFont.style.fontFamily}, system-ui;
93
--font-cal: ${calFont.style.fontFamily};
94
95
0 commit comments