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

fix: command bar z-index ()

This commit is contained in:
Tymoteusz Czech 2025-03-14 11:46:44 +01:00 committed by GitHub
parent 85ea5ce5e2
commit 14512c73d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions
frontend/src/component
commandBar
menu/Header/InviteLink

View File

@ -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,

View File

@ -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')]: {