Skip to content

Commit

Permalink
feat: add max width to webhook form
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhopperlowe committed Nov 21, 2024
1 parent 259c4d6 commit ec3d5ec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/admin/app/components/webhooks/WebhookForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ export function WebhookFormContent() {
}, [form, validationHeader]);

return (
<form onSubmit={handleSubmit} className="space-y-8 p-8">
<form
onSubmit={handleSubmit}
className="space-y-8 p-8 max-w-3xl mx-auto"
>
<TypographyH4>
{isEdit ? "Edit Webhook" : "Create Webhook"}
</TypographyH4>
Expand Down

0 comments on commit ec3d5ec

Please sign in to comment.