We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf789d7 commit 9fd49acCopy full SHA for 9fd49ac
src/app/layout.tsx
@@ -19,11 +19,7 @@ export default function RootLayout({
19
return (
20
<html lang="en" suppressHydrationWarning>
21
<body
22
- className={cn(
23
- "min-h-screen bg-background font-sans antialiased",
24
- fontSans.variable,
25
- fontMono.variable
26
- )}
+ className={cn("min-h-screen", fontSans.variable, fontMono.variable)}
27
>
28
<ThemeProvider
29
attribute="class"
src/styles/globals.css
@@ -63,6 +63,6 @@
63
@apply border-border;
64
}
65
body {
66
- @apply bg-background text-foreground;
+ @apply font-sans antialiased bg-background text-foreground;
67
68
0 commit comments