courrier multi account restore compose
This commit is contained in:
parent
e5b7c6e34a
commit
3d7a0c2559
@ -286,9 +286,9 @@ export default function ComposeEmail(props: ComposeEmailProps) {
|
|||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
/>
|
/>
|
||||||
<div className="flex-1 overflow-y-auto p-4">
|
<div className="flex-1 overflow-y-auto p-4">
|
||||||
<div className="h-full flex flex-col p-4 space-y-6 overflow-y-auto">
|
<div className="h-full flex flex-col p-6 space-y-4 overflow-y-auto">
|
||||||
{/* To Field */}
|
{/* To Field */}
|
||||||
<div className="flex-none mb-4">
|
<div className="flex-none">
|
||||||
<Label htmlFor="to" className="block text-sm font-medium text-gray-700">To</Label>
|
<Label htmlFor="to" className="block text-sm font-medium text-gray-700">To</Label>
|
||||||
<Input
|
<Input
|
||||||
id="to"
|
id="to"
|
||||||
@ -300,7 +300,7 @@ export default function ComposeEmail(props: ComposeEmailProps) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* CC/BCC Toggle Buttons */}
|
{/* CC/BCC Toggle Buttons */}
|
||||||
<div className="flex-none flex items-center gap-4 mb-4">
|
<div className="flex-none flex items-center gap-4">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="text-blue-600 hover:text-blue-700 text-sm font-medium"
|
className="text-blue-600 hover:text-blue-700 text-sm font-medium"
|
||||||
@ -319,7 +319,7 @@ export default function ComposeEmail(props: ComposeEmailProps) {
|
|||||||
|
|
||||||
{/* CC Field */}
|
{/* CC Field */}
|
||||||
{showCc && (
|
{showCc && (
|
||||||
<div className="flex-none mb-4">
|
<div className="flex-none">
|
||||||
<Label htmlFor="cc" className="block text-sm font-medium text-gray-700">Cc</Label>
|
<Label htmlFor="cc" className="block text-sm font-medium text-gray-700">Cc</Label>
|
||||||
<Input
|
<Input
|
||||||
id="cc"
|
id="cc"
|
||||||
@ -333,7 +333,7 @@ export default function ComposeEmail(props: ComposeEmailProps) {
|
|||||||
|
|
||||||
{/* BCC Field */}
|
{/* BCC Field */}
|
||||||
{showBcc && (
|
{showBcc && (
|
||||||
<div className="flex-none mb-4">
|
<div className="flex-none">
|
||||||
<Label htmlFor="bcc" className="block text-sm font-medium text-gray-700">Bcc</Label>
|
<Label htmlFor="bcc" className="block text-sm font-medium text-gray-700">Bcc</Label>
|
||||||
<Input
|
<Input
|
||||||
id="bcc"
|
id="bcc"
|
||||||
@ -346,7 +346,7 @@ export default function ComposeEmail(props: ComposeEmailProps) {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Subject Field */}
|
{/* Subject Field */}
|
||||||
<div className="flex-none mb-6">
|
<div className="flex-none">
|
||||||
<Label htmlFor="subject" className="block text-sm font-medium text-gray-700">Subject</Label>
|
<Label htmlFor="subject" className="block text-sm font-medium text-gray-700">Subject</Label>
|
||||||
<Input
|
<Input
|
||||||
id="subject"
|
id="subject"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user