Skip to content

Commit

Permalink
Reduces the line-height of the genes textarea -- #18
Browse files Browse the repository at this point in the history
  • Loading branch information
chrtannus committed Jul 17, 2024
1 parent 471c73f commit cd2b61a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/wizards/GeneWizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ function GenesPanel({ initialValue, onChange }) {
</label>
<div className="mt-2">
<textarea
rows={6}
rows={7}
name="genes"
id="genes"
value={value}
className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-complement-500 sm:text-sm sm:leading-6"
className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-complement-500 sm:text-sm sm:leading-5"
onChange={handleChange}
/>
</div>
Expand Down

0 comments on commit cd2b61a

Please sign in to comment.