Skip to content

Commit 02a7589

Browse files
committed
fix: set min width on button to stop overflow
1 parent a859e81 commit 02a7589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/pages/OrganizationSettingsPage/OrganizationSettingsPageView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ export const OrganizationSettingsPageView: FC<
131131
title="Settings"
132132
description="Change or delete your organization."
133133
>
134-
<div className="flex bg-surface-orange items-center justify-between border border-solid border-orange-600 rounded-[8px] p-3 pl-[18px] gap-2 flex-grow">
134+
<div className="flex bg-surface-orange items-center justify-between border border-solid border-orange-600 rounded-[8px] p-3 pl-[18px] gap-2 flex-grow //flex-wrap">
135135
<span>Deleting an organization is irreversible.</span>
136-
<Button variant="destructive" onClick={() => setIsDeleting(true)}>
136+
<Button variant="destructive" onClick={() => setIsDeleting(true)} className="min-w-fit">
137137
Delete this organization
138138
</Button>
139139
</div>

0 commit comments

Comments
 (0)