Skip to content

Commit

Permalink
Update DocumentLayout.tsx
Browse files Browse the repository at this point in the history
add vertical spacing
  • Loading branch information
e-mln-e committed Jan 23, 2024
1 parent 7e681fd commit 6d0b2a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/docs/DocumentLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ 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">{children}</div>
<div className="m-auto max-w-2xl p-5 my-8">{children}</div>
</div>
</div>
}
}

0 comments on commit 6d0b2a6

Please sign in to comment.