Skip to content

Commit

Permalink
minor correction to the input field
Browse files Browse the repository at this point in the history
  • Loading branch information
kenudeh committed Oct 1, 2023
1 parent dc311f9 commit 77be552
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ const handleSubmit = (e) => {
search={search}
setSearch = {setSearch} />}/>
<Route path="edit" element={<Edit items={items} editPost={editPost} setEditPost={setEditPost} handleEdit={handleEdit}/>}/>
<Route path=":id" element={<Edit items={items} editPost={editPost} setEditPost={setEditPost} handleEdit={handleEdit}/>}/>
<Route path="*" element={<Missing />}/>
</Route>
</Routes>
Expand Down
4 changes: 2 additions & 2 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ code {
flex-grow: 4;
max-width: 500px;
border: 5px solid #e68fa4;
background-color: red;
}

/*Header*/
Expand Down Expand Up @@ -161,7 +160,8 @@ ul{

.Edit form input{
min-height: 15vh;
min-width: 50vw;
max-width: 20vw;
min-width: 25vw;
}

.Edit form button{
Expand Down

0 comments on commit 77be552

Please sign in to comment.