Skip to content

Commit

Permalink
fix: font
Browse files Browse the repository at this point in the history
  • Loading branch information
MartianGreed committed Sep 10, 2024
1 parent 61e4889 commit cc3f726
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions apps/arkmarket/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@
--font-spacemono: var(--font-vt323);
--font-baebasneue: var(--font-vt323);
--font-silkscreen: var(--font-vt323);
--font-inconsolata: var(--font-vt323);
--background: 0 0 8%;
--foreground: 110 92% 56%;
--card: var(--background);
Expand Down
16 changes: 8 additions & 8 deletions apps/arkmarket/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,20 +131,20 @@ export default function RootLayout({ children }: PropsWithChildren) {
<html
lang="en"
suppressHydrationWarning
className={
className={cn(

env.NEXT_PUBLIC_THEME === "unframed"
? "unframed"
: env.NEXT_PUBLIC_THEME
: env.NEXT_PUBLIC_THEME,
silkscreen.variable,
inconsolata.variable,
vt323.variable,
)
}
>
<body
style={backgroundImageStyle}
className={cn(
"min-h-screen overscroll-y-none bg-background text-foreground antialiased lg:pb-10",
silkscreen.variable,
inconsolata.variable,
vt323.variable,
)}
className="min-h-screen overscroll-y-none bg-background text-foreground antialiased lg:pb-10"
>
<CustomFonts />
<Providers>
Expand Down

0 comments on commit cc3f726

Please sign in to comment.