1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00

fix: message banner zIndex (#5015)

After aligning with @nicolaesocaciu, this fixes the message banner
zIndex.

Co-authored-by: Nicolae <nicolae@getunleash.ai>
This commit is contained in:
Nuno Góis 2023-10-12 15:45:33 +01:00 committed by GitHub
parent d30e059ffc
commit 5f6c17f4bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ const StyledBar = styled('aside', {
fontSize: theme.fontSizes.smallBody, fontSize: theme.fontSizes.smallBody,
...(sticky && { ...(sticky && {
top: 0, top: 0,
zIndex: theme.zIndex.sticky, zIndex: theme.zIndex.sticky - 100,
}), }),
}), }),
); );