Skip to content

Commit

Permalink
align center && remove card description
Browse files Browse the repository at this point in the history
  • Loading branch information
toffee-k21 committed Dec 19, 2024
1 parent 5f67bda commit 30a6d22
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion components/Slider/slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function ReactSlider({ children }) {
(<Slider ref={slider} {...settings}>
{children}
</Slider>):(
<div className='flex m-4 overflow-x-scroll overflow-y-hidden' style={{scrollbarWidth:"none"}}>{children}</div>)}
<div className='flex justify-center lg:justify-start m-4 overflow-x-scroll overflow-y-hidden' style={{scrollbarWidth:"none"}}>{children}</div>)}
</>
);
}
Expand Down
1 change: 0 additions & 1 deletion components/Tickets/ticketCards.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ function TicketCards({ className, city }) {
<div className='p-4 overflow-hidden'>
<div className='text-xl font-bold text-gradient'>{city.name}, {city.country}</div>
<div className='mt-2 text-lg'>{city.date}</div>
<p className='border-t pt-2 '>{city.description}</p>
</div>
<div className='flex justify-center border-t h-20 border-dashed p-4 text-center'>
{/* Show a button based on the event status */}
Expand Down

0 comments on commit 30a6d22

Please sign in to comment.