From 4344c94a90a91e619676caaae4e578217b085308 Mon Sep 17 00:00:00 2001 From: David Leek Date: Thu, 3 Apr 2025 10:24:26 +0200 Subject: [PATCH] chore: remove z-index from sticky admin menu as its probably not needed (#9690) --- frontend/src/component/layout/MainLayout/AdminMenu/AdminMenu.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/component/layout/MainLayout/AdminMenu/AdminMenu.tsx b/frontend/src/component/layout/MainLayout/AdminMenu/AdminMenu.tsx index 73780ac34a..88ed67ff71 100644 --- a/frontend/src/component/layout/MainLayout/AdminMenu/AdminMenu.tsx +++ b/frontend/src/component/layout/MainLayout/AdminMenu/AdminMenu.tsx @@ -99,7 +99,6 @@ const StyledMenuPaper = styled(Paper)(({ theme }) => ({ const StickyContainer = styled(Sticky)(({ theme }) => ({ position: 'sticky', top: 0, - zIndex: theme.zIndex.sticky, background: theme.palette.background.application, transition: 'padding 0.3s ease', }));