Skip to content

Commit

Permalink
fix: reposition submit btn
Browse files Browse the repository at this point in the history
  • Loading branch information
dila1001 committed Feb 5, 2024
1 parent 330bc54 commit 7042aef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/EditPlant/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const EditPlant = () => {
</button>
</>
) : (
<h2 className='card-title text-3xl mb-4'>Add New Plant</h2>
<h2 className='card-title text-3xl'>Add New Plant</h2>
)}
</div>

Expand Down Expand Up @@ -205,7 +205,7 @@ const EditPlant = () => {
<input
type='number'
placeholder='Amount of water in ml'
className={`input input-bordered input-success w-full ${
className={`input input-bordered input-success w-full mb-8 ${
errors.waterAmountInMl && 'input-error'
}`}
{...register('waterAmountInMl', {
Expand Down

0 comments on commit 7042aef

Please sign in to comment.