Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nina1o1 committed Oct 30, 2023
1 parent f1f4aed commit f3f4b6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion front-end/GoodOldMap/src/components/form/formInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const FormInput = (props) => {
// optional: type
return (
<div className="w-full py-1">
<input className="w-full py-2 px-3
<input className="w-full py-2 text-center
border-solid border-2 border-navyBlue rounded-lg
placeholder:text-center placeholder:text-gray-400"
type={props?.type ?? "text"} id={props?.id} placeholder={props?.placeholder}/>
Expand Down
3 changes: 2 additions & 1 deletion front-end/GoodOldMap/src/pages/MainMap/MapLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ const MapLayout = () => {
<>
<div className="h-screen flex flex-col">
<nav className="py-[2vh] px-[5%] w-full bg-white flex flex-row justify-between">
<FormInput placeholder="search for city"/>
{/* TODO: search bar and user img goes here, below is sample search bar*/}
<FormInput placeholder="search for city"/>
{/* TODO: timeline goes here */}
</nav>
<div className='w-full h-full'>
Expand Down

0 comments on commit f3f4b6d

Please sign in to comment.