mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-09 00:18:00 +01:00
fix: draft banner zIndex (#5124)
Tiny zIndex fix for the draft banner for a regression introduced in https://github.com/Unleash/unleash/pull/5088 ### Before - Draft banner is displayed on top of the profile popup: ![image](https://github.com/Unleash/unleash/assets/14320932/63865f01-9bbe-42f1-9cc4-85c3c985334c) ### After - Profile popup displays on top of the draft banner: ![image](https://github.com/Unleash/unleash/assets/14320932/565e1017-5163-445d-bc0c-ee957023241b)
This commit is contained in:
parent
828e463e38
commit
93fb615841
@ -104,6 +104,7 @@ const StickyBanner = styled(Sticky)(({ theme }) => ({
|
|||||||
borderBottom: `1px solid ${theme.palette.warning.border}`,
|
borderBottom: `1px solid ${theme.palette.warning.border}`,
|
||||||
color: theme.palette.warning.contrastText,
|
color: theme.palette.warning.contrastText,
|
||||||
backgroundColor: theme.palette.warning.light,
|
backgroundColor: theme.palette.warning.light,
|
||||||
|
zIndex: 250,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const DraftBanner: VFC<IDraftBannerProps> = ({ project }) => {
|
export const DraftBanner: VFC<IDraftBannerProps> = ({ project }) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user