[RAPID-micro] 메일 작성 폼 간격 개선, 비밀번호 엔터키 저장 추가

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-01 15:17:00 +09:00
parent 67e7e19bae
commit 485f432b02
2 changed files with 7 additions and 6 deletions

View File

@@ -104,8 +104,8 @@ export default function ComposeDialog({
{mode === "reply" ? "답장" : mode === "forward" ? "전달" : "새 메일"}
</DialogTitle>
</DialogHeader>
<div className="space-y-3">
<div>
<div className="space-y-4">
<div className="space-y-1.5">
<Label> </Label>
<Select
value={fromAccountId?.toString() ?? ""}
@@ -123,19 +123,19 @@ export default function ComposeDialog({
</SelectContent>
</Select>
</div>
<div>
<div className="space-y-1.5">
<Label></Label>
<Input value={to} onChange={(e) => setTo(e.target.value)} placeholder="to@example.com" />
</div>
<div>
<div className="space-y-1.5">
<Label>(CC)</Label>
<Input value={cc} onChange={(e) => setCc(e.target.value)} placeholder="cc@example.com (선택)" />
</div>
<div>
<div className="space-y-1.5">
<Label></Label>
<Input value={subject} onChange={(e) => setSubject(e.target.value)} />
</div>
<div>
<div className="space-y-1.5">
<Label></Label>
<EditorContent editor={editor} />
</div>

View File

@@ -999,6 +999,7 @@ export default function ImapMailPage() {
type={showPassword ? "text" : "password"}
value={form.password}
onChange={(e) => setForm((p) => ({ ...p, password: e.target.value }))}
onKeyDown={(e) => { if (e.key === "Enter") handleSave(); }}
placeholder="••••••••"
className="pr-9"
/>