From 0cbe609875f21b87dfabe70df06031fd03fa23d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Les=CC=81nik?= Date: Sat, 22 Apr 2023 13:14:56 +0200 Subject: [PATCH] create new stacking context for children to avoid problems with z-index --- apps/web/components/layouts/mainLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/components/layouts/mainLayout.tsx b/apps/web/components/layouts/mainLayout.tsx index 8299e70..9ec92f9 100644 --- a/apps/web/components/layouts/mainLayout.tsx +++ b/apps/web/components/layouts/mainLayout.tsx @@ -13,7 +13,7 @@ export const MainLayout = ({ children }: MainLayoutProps) => {
- {children} +
{children}
);