Skip to content

Commit

Permalink
Update DocumentLayout.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
e-mln-e authored Jan 23, 2024
1 parent 56784dd commit ba61544
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/docs/DocumentLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ export default function MdxLayout({ children }: { children: React.ReactNode }) {
// Create any shared layout or styles here
return <div>
<div>
<div className="m-auto max-w-2xl p-5 my-8">{children}</div>
<div className="m-auto max-w-2xl p-5 my-8">
<div className="my-8">{children}</div>
</div>
</div>
</div>
}

0 comments on commit ba61544

Please sign in to comment.