Skip to content

Commit

Permalink
Steps Improved
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanmahe committed Nov 7, 2024
1 parent c6dedf7 commit a69e48a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LandingComp/Steps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ const CardSlider = () => {
<ol className="relative z-10 flex justify-between text-sm font-medium text-primary">
{Array.from({ length: 4 }).map((_, index) => (
<li className="flex items-center bg-background p-2" key={index}>
<button className={`size-6 rounded-full text-center text-[15px]/6 font-bold text-background ${index === currentIndex ? 'bg-primary' : 'bg-gray-300'
<button className={`size-6 rounded-full text-center text-[15px]/6 font-bold text-background ${index === currentIndex ? 'bg-primary' : 'bg-gray-400'
}`}
onMouseEnter={() => setIndex(index)}
onMouseLeave={() => setIsPaused(false)}
>
<span
className={`size-6 rounded-full text-center text-[15px]/6 font-bold text-background ${index === currentIndex ? 'bg-primary' : 'bg-gray-300'
className={`size-6 rounded-full text-center text-[15px]/6 font-bold text-background ${index === currentIndex ? 'bg-primary' : 'bg-gray-400'
}`}
>
{index + 1}
Expand Down

0 comments on commit a69e48a

Please sign in to comment.