From 395ac23355566bf897b8d047b69515a45f3fe75a Mon Sep 17 00:00:00 2001 From: Pablo Allendes Date: Thu, 7 Dec 2023 15:57:51 -0300 Subject: [PATCH] fix(NavigationPopover): add z-indexes --- src/components/navigation/navigation-popover.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/navigation/navigation-popover.tsx b/src/components/navigation/navigation-popover.tsx index 4a52a888..576be6ed 100644 --- a/src/components/navigation/navigation-popover.tsx +++ b/src/components/navigation/navigation-popover.tsx @@ -35,7 +35,7 @@ export interface NavigationPopoverPanelProps { const NavigationPopoverPanel = ({ children }: NavigationPopoverPanelProps) => { return ( - + {children} ); @@ -53,7 +53,7 @@ const NavigationPopover = ({ children, showOverlay }: NavigationPopoverProps) => <> {showOverlay && ( - + )}
{children}