Skip to content

Commit

Permalink
improve lightmode
Browse files Browse the repository at this point in the history
  • Loading branch information
maaaathis committed Dec 18, 2023
1 parent 19ecdea commit c338eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const RootLayout: FC<RootLayoutProps> = ({ children }): ReactElement => {
<body>
<Providers>
<div className="relative flex min-h-screen flex-col items-center justify-center bg-background">
<div className="absolute bottom-0 left-0 right-0 top-0 max-h-screen bg-[linear-gradient(to_right,#4f4f4f2e_1px,transparent_1px),linear-gradient(to_bottom,#4f4f4f2e_1px,transparent_1px)] bg-[size:24px_48px] [mask-image:radial-gradient(ellipse_60%_50%_at_50%_0%,#000_70%,transparent_100%)]" />
<div className="absolute bottom-0 left-0 right-0 top-0 max-h-screen bg-[linear-gradient(to_right,#8c8c8c2e_1px,transparent_1px),linear-gradient(to_bottom,#8c8c8c2e_1px,transparent_1px)] bg-[size:24px_48px] [mask-image:radial-gradient(ellipse_60%_50%_at_50%_0%,#000_70%,transparent_100%)] dark:bg-[linear-gradient(to_right,#4f4f4f2e_1px,transparent_1px),linear-gradient(to_bottom,#4f4f4f2e_1px,transparent_1px)]" />
<main className="z-10 w-full flex-1">
<Header />
{children}
Expand Down

0 comments on commit c338eef

Please sign in to comment.