This commit is contained in:
alma 2025-05-04 16:22:35 +02:00
parent 3062d92eaa
commit db7c4c1a73

View File

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