Skip to content

Commit

Permalink
Merge pull request #1475 from mfts/marc/pm-146-arrow-keys-not-visible…
Browse files Browse the repository at this point in the history
…-in-viewer

feat: make arrow keys visible
  • Loading branch information
mfts authored Feb 6, 2025
2 parents 881bc99 + 1c178ee commit 3088a25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/view/viewer/pages-horizontal-viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ export default function PagesHorizontalViewer({
onClick={!isMobile ? goToPreviousPage : undefined}
className={cn(
"rounded-full bg-gray-950/50 p-1 transition-opacity duration-200 hover:bg-gray-950/75",
"opacity-0 group-hover:opacity-100",
"opacity-50 group-hover:opacity-100",
)}
>
<ChevronLeftIcon
Expand All @@ -808,7 +808,7 @@ export default function PagesHorizontalViewer({
onClick={!isMobile ? goToNextPage : undefined}
className={cn(
"rounded-full bg-gray-950/50 p-1 transition-opacity duration-200 hover:bg-gray-950/75",
"opacity-0 group-hover:opacity-100",
"opacity-50 group-hover:opacity-100",
)}
>
<ChevronRightIcon
Expand Down

0 comments on commit 3088a25

Please sign in to comment.