Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion front/src/app/record/[name]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export default function RecordPage({
<form className="w-full mb-4" onSubmit={handleCreateFile}>
<input
type="text"
className="rounded w-full text-black p-1 px-2 focus:outline-none"
className="rounded w-full bg-white text-black p-1 px-2 focus:outline-none"
onChange={(e) => setFileName(e.target.value)}
value={fileName}
placeholder="README"
Expand Down
2 changes: 1 addition & 1 deletion front/src/components/records/createRecord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function CreateRecord({
<div className="relative flex flex-col gap-2">
<input
type="text"
className="text-black p-2 rounded"
className="bg-white text-black p-2 rounded"
onChange={handleSetName}
value={recordName}
/>
Expand Down
Loading