fix: Overflow of inputs in email editor
This commit is contained in:
@@ -213,7 +213,7 @@ export function Toolbar({editor, onInsertVariable, onInsertImage, canUploadImage
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="border-b border-neutral-200 bg-neutral-50 p-2 flex flex-wrap gap-1 sticky top-0 z-10">
|
<div className="border-b border-neutral-200 bg-neutral-50 p-2 flex flex-wrap gap-1 sticky top-0 z-40">
|
||||||
{/* History */}
|
{/* History */}
|
||||||
<div className="flex gap-0.5 pr-2 border-r border-neutral-200">
|
<div className="flex gap-0.5 pr-2 border-r border-neutral-200">
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -591,7 +591,7 @@ export default function CampaignDetailsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Email Editor - Full Width */}
|
{/* Email Editor - Full Width */}
|
||||||
<Card>
|
<Card className="overflow-visible">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Email Content</CardTitle>
|
<CardTitle>Email Content</CardTitle>
|
||||||
<CardDescription>Design your email using the visual editor or paste custom HTML</CardDescription>
|
<CardDescription>Design your email using the visual editor or paste custom HTML</CardDescription>
|
||||||
|
|||||||
@@ -291,7 +291,7 @@ export default function CreateCampaignPage() {
|
|||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
{/* Email Content */}
|
{/* Email Content */}
|
||||||
<Card>
|
<Card className="overflow-visible">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<StepHeader stepNumber={3} title="Email Content" description="Design your email message" />
|
<StepHeader stepNumber={3} title="Email Content" description="Design your email message" />
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
|
|||||||
@@ -279,7 +279,7 @@ export default function TemplateEditorPage() {
|
|||||||
|
|
||||||
{/* Email Body */}
|
{/* Email Body */}
|
||||||
<div>
|
<div>
|
||||||
<Card>
|
<Card className="overflow-visible">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Email Body</CardTitle>
|
<CardTitle>Email Body</CardTitle>
|
||||||
<CardDescription>Create your email using the visual editor or paste custom HTML</CardDescription>
|
<CardDescription>Create your email using the visual editor or paste custom HTML</CardDescription>
|
||||||
|
|||||||
@@ -179,7 +179,7 @@ export default function CreateTemplatePage() {
|
|||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
{/* Email Body */}
|
{/* Email Body */}
|
||||||
<Card>
|
<Card className="overflow-visible">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Email Body</CardTitle>
|
<CardTitle>Email Body</CardTitle>
|
||||||
<CardDescription>Create your email using the visual editor or paste custom HTML</CardDescription>
|
<CardDescription>Create your email using the visual editor or paste custom HTML</CardDescription>
|
||||||
|
|||||||
Reference in New Issue
Block a user