Skip to content

Commit

Permalink
fix: improve readability of MDX pages in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kuizuo committed Aug 3, 2024
1 parent 8580746 commit 2c01d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/theme/MDXPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function MDXPage(props: Props): JSX.Element {
<Layout>
<main className="container--fluid margin-vert--lg container">
<div className={cn('row', styles.mdxPageWrapper)}>
<div className={cn('col prose', 'col--8')}>
<div className={cn('col prose dark:prose-invert', 'col--8')}>
<MDXContent>
<MDXPageContent />
</MDXContent>
Expand Down

0 comments on commit 2c01d9b

Please sign in to comment.