add custom search field component

This commit is contained in:
Anika Raemer 2025-09-14 14:10:46 +02:00
parent df406b636e
commit 30c138d13f
4 changed files with 84 additions and 9 deletions

View file

@ -121,7 +121,7 @@ export default function RecipeEditor({ recipe, onSave, onCancel }: RecipeEditorP
<h3 className="subsection-heading">Instructions</h3>
{/* Instructions */}
<textarea
className="text-area"
className="input-field"
placeholder="Instructions"
value={draft.instructions}
onChange={e => setDraft({ ...draft, instructions: e.target.value })}