Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

No Space between add link and first link #9406 Fixed #9841

Closed
wants to merge 15 commits into from
Closed
2 changes: 1 addition & 1 deletion components/Page.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default function Page({ children }) {
return <div className="max-w-7xl mx-auto flex flex-col p-6">{children}</div>;
return <div className="max-w-7xl mx-auto flex flex-col gap-4 p-6">{children}</div>;
}