From e6b574e17726b7554719096cce1082e0aa8f598c Mon Sep 17 00:00:00 2001 From: notmd <33456881+notmd@users.noreply.github.com> Date: Wed, 8 Feb 2023 17:42:40 +0700 Subject: [PATCH] fix side meunu layout overflow (#1346) --- website/src/components/Layout.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/website/src/components/Layout.tsx b/website/src/components/Layout.tsx index d08e36e6..ca8be764 100644 --- a/website/src/components/Layout.tsx +++ b/website/src/components/Layout.tsx @@ -31,7 +31,7 @@ export const getTransparentHeaderLayout = (page: React.ReactElement) => ( ); export const getDashboardLayout = (page: React.ReactElement) => ( - +
( }, ]} > - - {page} - - - - + {page} + + + ); export const getAdminLayout = (page: React.ReactElement) => ( -
+
( > {page} -
+ ); export const noLayout = (page: React.ReactElement) => page;