visual tweaks

This commit is contained in:
fred 2025-08-05 15:09:52 -07:00
parent 04bfdd0c8f
commit 93e298a9f1
5 changed files with 10 additions and 12 deletions

View file

@ -47,14 +47,14 @@ const AddBulkSteps: React.FC<AddBulkStepsProps> = ({ steps, onChange }) => {
return (
<div>
<p>Please enter each step on a new line:</p>
<h3 className="text-xl font-bold">Steps:</h3>
<textarea
rows={8}
value={textValue}
onChange={handleInputChange}
onKeyDown={handleKeyDown}
onBlur={handleBlur}
placeholder="Enter steps separated by newline..."
placeholder="Enter steps separated by new line"
className="mb-4 p-2 border border-gray-300 rounded w-full"
/>
</div>