Skip to content

Commit

Permalink
small ui changes to ManageList page
Browse files Browse the repository at this point in the history
  • Loading branch information
khadijahnabil committed Mar 31, 2024
1 parent e78a42b commit aacc762
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/ManageList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ export function ManageList({ listPath, userId, existingItems }) {
};

return (
<div className="manage-list flex items-center">
<div className="manage-list flex items-center gap-10">
<form className="add-item h-96 w-auto" onSubmit={handleItemSubmit}>
<h1 className="text-4xl my-5">Add List Item</h1>
<div>
<label htmlFor="itemName">Name of item: </label> <br />
<div className="flex gap-2">
<label htmlFor="itemName">Name of item:</label> <br />
<input
value={itemName}
onChange={(e) => setItemName(e.target.value)}
Expand Down

0 comments on commit aacc762

Please sign in to comment.