courrier multi account restore compose

This commit is contained in:
alma 2025-04-28 10:57:52 +02:00
parent e99d08fccf
commit 539ecd51b9

View File

@ -280,7 +280,7 @@ export default function ComposeEmail(props: ComposeEmailProps) {
}, []);
return (
<div className="flex flex-col h-full">
<div className="flex flex-col h-full max-h-[80vh]">
<ComposeEmailHeader
type={type}
onClose={onClose}
@ -393,8 +393,8 @@ export default function ComposeEmail(props: ComposeEmailProps) {
</div>
)}
</div>
{/* Modal Footer */}
</div>
{/* Modal Footer - now inside the main modal container and visually attached */}
<div className="flex-none flex items-center justify-between px-6 py-3 border-t border-gray-200 bg-white">
<div className="flex items-center gap-2">
{/* File Input for Attachments */}
@ -453,6 +453,5 @@ export default function ComposeEmail(props: ComposeEmailProps) {
</div>
</div>
</div>
</div>
);
}