Skip to content

Commit

Permalink
add margin to navigation arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
LinoH5 committed Sep 15, 2023
1 parent 88211d9 commit 9cd39d9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const ScrollNavigationArrows = ({
className={`absolute top-0 left-0 h-full flex ${isVisibleLeft ? 'visible' : 'hidden'}`}
>
<IconButton
className='!bg-[#7e241d] !text-white !my-auto !shadow-xl'
className='!bg-[#7e241d] !text-white !my-auto !shadow-xl !ml-1'
onClick={e => {
onPressLeft(e);
}}
Expand Down Expand Up @@ -127,7 +127,7 @@ const ScrollNavigationArrows = ({
className={`absolute top-0 right-0 h-full flex ${isVisibleRight ? 'visible' : 'hidden'}`}
>
<IconButton
className='!bg-[#7e241d] !text-white !my-auto !shadow-xl'
className='!bg-[#7e241d] !text-white !my-auto !shadow-xl !mr-1'
onClick={e => {
onPressRight(e);
}}
Expand Down

0 comments on commit 9cd39d9

Please sign in to comment.