Skip to content

Commit

Permalink
Delete arrow buttons in mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMejia77 committed Mar 19, 2024
1 parent 3deab77 commit 807c4ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Banner: FC = () => {
<button
onClick={onClick}
disabled={disabled}
className="hover:text-primary-lm transition-all ease-linear duration-300 absolute top-[50%] translate-y-[-50%] bg-background-lm z-10 p-2 rounded-full invisible group-hover:visible left-2 opacity-80"
className="hover:text-primary-lm transition-all ease-linear duration-300 absolute top-[50%] translate-y-[-50%] bg-background-lm z-10 p-2 rounded-full invisible ms:group-hover:visible left-2 opacity-80"
>
<BsChevronCompactLeft size={31} />
</button>
Expand All @@ -42,7 +42,7 @@ const Banner: FC = () => {
<button
onClick={onClick}
disabled={disabled}
className="hover:text-primary-lm transition-all ease-linear duration-300 absolute top-[50%] translate-y-[-50%] bg-background-lm z-10 p-2 rounded-full invisible group-hover:visible right-2 opacity-80"
className="hover:text-primary-lm transition-all ease-linear duration-300 absolute top-[50%] translate-y-[-50%] bg-background-lm z-10 p-2 rounded-full invisible ms:group-hover:visible right-2 opacity-80"
>
<BsChevronCompactRight size={31} />
</button>
Expand Down

0 comments on commit 807c4ea

Please sign in to comment.