Skip to content

Commit

Permalink
fix spacing on itinerary add cards
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksors committed Jan 28, 2024
1 parent 685b560 commit c978d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/itineraries/create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ const Create = () => {
}

return (
<div className={'flex flex-col justify-center items-center m-4 pt-20'}>
<div className={'flex flex-row flex-wrap justify-center items-center gap-5'}>
<div className={'flex flex-col justify-center items-center pt-24'}>
<div className={'flex flex-row flex-wrap justify-center items-center gap-5 pb-20'}>
{routes.map((route, index) => (
<FlightAdd key={index} airports={airports} deleteCallback={deleteFlight(index)} setFlightCallback={updateFlightNoAndDates(index)} />
))}
Expand Down

0 comments on commit c978d4b

Please sign in to comment.