This commit is contained in:
RandyJC
2025-12-09 12:07:39 +01:00
parent 13c1e9c3f6
commit a23299a45e

View File

@@ -1,7 +1,7 @@
import { PropsWithChildren } from "react"
const Form = ({ children }: PropsWithChildren) => (
<div className="z-10 flex w-full max-w-80 flex-col gap-4 rounded-md bg-white p-4 shadow-sm">
<div className="z-10 mx-auto flex w-full max-w-80 flex-col gap-4 rounded-md bg-white p-4 shadow-sm">
{children}
</div>
)