From 60e9864e52a6a35ddceda86349a5d4dc93381501 Mon Sep 17 00:00:00 2001 From: Jeet Desai <52026385+jeet1desai@users.noreply.github.com> Date: Wed, 17 Jan 2024 14:43:51 +0530 Subject: [PATCH] Fix: z index for the menu (#3497) fix: z index for the menu --- .../src/modules/ui/layout/dropdown/components/DropdownMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx index 8253d7192..bad084352 100644 --- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx +++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx @@ -15,7 +15,7 @@ const StyledDropdownMenu = styled.div<{ display: flex; flex-direction: column; - + z-index: 1; width: ${({ width }) => width ? `${typeof width === 'number' ? `${width}px` : width}` : '160px'}; `;