Skip to content

Commit d8b6276

Browse files
committed
fix(static): fix dark mode on static pages
1 parent d52c03c commit d8b6276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/StaticPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Container } from "@/components/Container";
33
export const StaticPage = ({ children }: { children: React.ReactNode }) => {
44
return (
55
<article
6-
className="prose mx-auto mb-24 mt-14 max-w-none"
6+
className="prose mx-auto mb-24 mt-14 max-w-none dark:prose-invert"
77
style={{ contain: "none" }}
88
>
99
<Container>{children}</Container>

0 commit comments

Comments
 (0)