Skip to content

Commit

Permalink
Steps updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanmahe committed Nov 15, 2024
1 parent 1f50646 commit 8ffd6a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Steps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const Steps: React.FC = () => {
{carouselItems.map((item, index) => (
<CarouselItem
key={index}
className="sm:basis-1/1 md:basis-1/3 lg:basis-1/2 xl:basis-1/1 2xl:basis-1/4"
className="sm:basis-1/1 md:basis-1/3 lg:basis-1/3 xl:basis-1/3 2xl:basis-1/4"
>
<Card onClick={() => handleImageClick(item)}>
<CardContent>
Expand All @@ -81,10 +81,10 @@ const Steps: React.FC = () => {
<Image
alt={item.title}
width={800}
height={800}
height={400}
src={item.image}
layout="responsive"
className="rounded-xl md:h-[50vh] md:w-[40vh] lg:h-[50vh] lg:w-[60vh] 2xl:h-[38vh] 2xl:w-[50vh] w-full object-contain"
className="rounded-xl md:h-[40vh] md:w-[40vh] lg:h-[40vh] lg:w-[60vh] 2xl:h-[38vh] 2xl:w-[50vh] w-full object-contain"
/>
)}
</div>
Expand Down

0 comments on commit 8ffd6a3

Please sign in to comment.