mirror of
https://github.com/Unleash/unleash.git
synced 2025-03-18 00:19:49 +01:00
fix: command bar z-index (#9543)
This commit is contained in:
parent
85ea5ce5e2
commit
14512c73d6
frontend/src/component
@ -37,7 +37,7 @@ export const CommandResultsPaper = styled(Paper)(({ theme }) => ({
|
||||
width: '100%',
|
||||
left: 0,
|
||||
top: '39px',
|
||||
zIndex: 4,
|
||||
zIndex: theme.zIndex.drawer,
|
||||
borderTop: theme.spacing(0),
|
||||
padding: theme.spacing(1.5, 0, 1.5),
|
||||
borderRadius: 0,
|
||||
|
@ -12,7 +12,7 @@ const StyledPaper = styled(Paper)(({ theme }) => ({
|
||||
borderRadius: theme.shape.borderRadiusMedium,
|
||||
boxShadow: theme.boxShadows.popup,
|
||||
position: 'absolute',
|
||||
zIndex: 5000,
|
||||
zIndex: theme.zIndex.snackbar,
|
||||
right: -255,
|
||||
minWidth: theme.spacing(80),
|
||||
[theme.breakpoints.down('md')]: {
|
||||
|
Loading…
Reference in New Issue
Block a user