Skip to content

Commit

Permalink
fix: arrow scroll z index
Browse files Browse the repository at this point in the history
  • Loading branch information
jsladerman committed Nov 21, 2024
1 parent 10258af commit a51dc25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ArrowScroll.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ArrowWrapperSC = styled.div<{
$direction?: 'left' | 'right'
}>(({ theme, $direction }) => ({
color: theme.colors['icon-light'],
zIndex: theme.zIndexes.modal,
zIndex: theme.zIndexes.modal - 1,
position: 'absolute',
top: 0,
bottom: 0,
Expand Down

0 comments on commit a51dc25

Please sign in to comment.