Skip to content

Commit ed6fd23

Browse files
authored
fix: text wrap and overflow issues (#214)
1 parent 3689513 commit ed6fd23

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

apps/dashboard/app/(main)/websites/[id]/settings/transfer/page.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,14 @@ function TransferPageContent() {
233233
<Alert className="border-orange-200 bg-orange-50 text-orange-800 dark:border-orange-800 dark:bg-orange-950/20 dark:text-orange-200">
234234
<WarningIcon className="size-4" />
235235
<AlertDescription className="text-xs">
236-
<strong className="font-semibold">Important:</strong> This
237-
action is irreversible. All data, settings, and analytics will
238-
be transferred to{" "}
239-
<strong className="font-semibold">{selectedOrg?.name}</strong>.
240-
Ensure you have the necessary permissions on both organizations.
236+
<div>
237+
<strong className="font-semibold">Important:</strong> This
238+
action is irreversible. All data, settings, and analytics will
239+
be transferred to{" "}
240+
<strong className="font-semibold">{selectedOrg?.name}</strong>
241+
. Ensure you have the necessary permissions on both
242+
organizations.
243+
</div>
241244
</AlertDescription>
242245
</Alert>
243246
</section>

apps/dashboard/components/organizations/api-key-create-dialog.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,10 @@ export function ApiKeyCreateDialog({
238238
</div>
239239
</SheetHeader>
240240

241-
<form className="flex flex-1 flex-col" onSubmit={onSubmit}>
241+
<form
242+
className="flex flex-1 flex-col overflow-y-auto"
243+
onSubmit={onSubmit}
244+
>
242245
<SheetBody className="space-y-6">
243246
{/* Name Section */}
244247
<section className="space-y-3">

0 commit comments

Comments
 (0)