style: create workspace bg fix (#510)

This commit is contained in:
Anmol Singh Bhatia 2023-03-23 22:41:30 +05:30 committed by GitHub
parent 567afa6d39
commit 5191fc5f7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,16 +21,12 @@ const CreateWorkspace: NextPage = () => {
<DefaultLayout>
<div className="grid h-full place-items-center p-5">
<div className="w-full space-y-4">
<div className="text-center">
<Image src={Logo} height="40" alt="Plane Logo" />
<div className="mb-8 text-center">
<Image src={Logo} height="50" alt="Plane Logo" />
</div>
<div className="grid w-full place-items-center">
<div className="w-full rounded-lg bg-white p-8 md:w-2/5">
<CreateWorkspaceForm onSubmit={(res) => router.push(`/${res.slug}`)} />
</div>
</div>
</div>
</div>
</DefaultLayout>
);
};