Skip to content

Commit

Permalink
fix: prevent search being stacked on top of the form dropdown (#5523)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Dec 4, 2023
1 parent 3056456 commit a9363ef
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,8 @@ export const AdvancedPlayground: VFC<{
sx={{
background: theme.palette.background.elevation2,
borderBottomLeftRadius: theme.shape.borderRadiusMedium,
isolation: 'isolate',
zIndex: 2,
}}
>
<Paper
Expand Down Expand Up @@ -279,6 +281,8 @@ export const AdvancedPlayground: VFC<{
width: resultsWidth,
transition: 'width 0.4s ease',
padding: theme.spacing(4, 4),
isolation: 'isolate',
zIndex: 1,
})}
>
<ConditionallyRender
Expand Down

0 comments on commit a9363ef

Please sign in to comment.