notes
This commit is contained in:
parent
db7c4c1a73
commit
89e3a5362e
@ -109,7 +109,7 @@ export function NotesDialog({ open, onOpenChange }: NotesDialogProps) {
|
||||
<Input
|
||||
id="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}
|
||||
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-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}
|
||||
value={content}
|
||||
onChange={(e) => setContent(e.target.value)}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user