From 737b0f91cfcd15fb36359ed0e6bd61c6633ae6c1 Mon Sep 17 00:00:00 2001 From: Jake Laderman Date: Thu, 21 Nov 2024 14:59:01 -0500 Subject: [PATCH] fix: arrow scroll z index (#664) --- src/components/ArrowScroll.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ArrowScroll.tsx b/src/components/ArrowScroll.tsx index 5a8b6c6a..b8adb7c9 100644 --- a/src/components/ArrowScroll.tsx +++ b/src/components/ArrowScroll.tsx @@ -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,