Skip to content

Commit

Permalink
fix handle
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchayan721 committed Sep 1, 2023
1 parent 6b8e9cd commit 95e326a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/Carousel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const StyledSplideWrapper = styled('div')(({ theme }) => ({
},

'& .splide__arrow--prev, & .splide__arrow--next': {
zIndex: 1,
zIndex: theme.Shadows.lower.zIndex,
backgroundColor: alpha(theme.palette.background.default, 0.33),
backdropFilter: 'blur(0.33rem)',
fontSize: '1.25rem',
Expand All @@ -20,7 +20,6 @@ const StyledSplideWrapper = styled('div')(({ theme }) => ({
borderRadius: '1.618rem',
opacity: 1,
transition: 'all 0.3s ease-in-out',

'& path': {
fill: theme.palette.text.primary,
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigation/NavMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const NavigationWrapper = styled(Card)<NavigationCardProps>(({ theme, open }) =>
bottom: 0,
left: 0,
right: 0,
zIndex: theme.Shadows.lower.zIndex,
zIndex: theme.Shadows.low.zIndex,
borderRadius: 0,
overflow: 'hidden',
transition: theme.Transitions.createTransition({
Expand Down

0 comments on commit 95e326a

Please sign in to comment.