This commit is contained in:
alma 2025-05-04 16:25:53 +02:00
parent db7c4c1a73
commit 89e3a5362e

View File

@ -109,7 +109,7 @@ export function NotesDialog({ open, onOpenChange }: NotesDialogProps) {
<Input <Input
id="title" id="title"
placeholder="Note title" placeholder="Note title"
className="col-span-4 text-white bg-black border-gray-700 placeholder-gray-400" className="col-span-4 text-gray-800 bg-white border-gray-300 placeholder-gray-500"
value={title} value={title}
onChange={(e) => setTitle(e.target.value)} onChange={(e) => setTitle(e.target.value)}
disabled={isSaving} disabled={isSaving}
@ -120,7 +120,7 @@ export function NotesDialog({ open, onOpenChange }: NotesDialogProps) {
<Textarea <Textarea
id="content" id="content"
placeholder="What's on your mind?" placeholder="What's on your mind?"
className="col-span-4 text-white bg-black border-gray-700 placeholder-gray-400" className="col-span-4 text-gray-800 bg-white border-gray-300 placeholder-gray-500"
rows={10} rows={10}
value={content} value={content}
onChange={(e) => setContent(e.target.value)} onChange={(e) => setContent(e.target.value)}