fix: remove extra curly brace in style element (#146)

This commit is contained in:
Luke McDonald
2023-03-31 22:52:48 -05:00
committed by GitHub
parent 272c7c0980
commit d6933321dc

View File

@@ -14,10 +14,10 @@ export default function App({ Component, pageProps }: AppProps) {
return (
<>
<style jsx global>{`
:root {
--font-sans: ${fontSans.style.fontFamily};
}
}`}</style>
:root {
--font-sans: ${fontSans.style.fontFamily};
}
`}</style>
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
<Component {...pageProps} />
</ThemeProvider>