1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-19 01:17:18 +02:00

fix: prevent search being stacked on top of the form dropdown (#5523)

This commit is contained in:
Mateusz Kwasniewski 2023-12-04 12:27:25 +01:00 committed by GitHub
parent 3056456770
commit a9363efec1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -245,6 +245,8 @@ export const AdvancedPlayground: VFC<{
sx={{ sx={{
background: theme.palette.background.elevation2, background: theme.palette.background.elevation2,
borderBottomLeftRadius: theme.shape.borderRadiusMedium, borderBottomLeftRadius: theme.shape.borderRadiusMedium,
isolation: 'isolate',
zIndex: 2,
}} }}
> >
<Paper <Paper
@ -279,6 +281,8 @@ export const AdvancedPlayground: VFC<{
width: resultsWidth, width: resultsWidth,
transition: 'width 0.4s ease', transition: 'width 0.4s ease',
padding: theme.spacing(4, 4), padding: theme.spacing(4, 4),
isolation: 'isolate',
zIndex: 1,
})} })}
> >
<ConditionallyRender <ConditionallyRender