Merge pull request #787 from rsandb/Dashboard-Shadow-Fix

dashboard shadow fix
This commit is contained in:
Keith Stevens
2023-01-17 11:35:48 +09:00
committed by GitHub
+1 -1
View File
@@ -16,7 +16,7 @@ export const SideMenuLayout = (props: SideMenuLayoutProps) => {
<Box p={["3", "3", "3", "6"]} pr={["3", "3", "3", "0"]}>
<SideMenu buttonOptions={props.menuButtonOptions} />
</Box>
<Box className="overflow-y-auto p-3 lg:p-6 lg:pl-0 w-full">{props.children}</Box>
<Box className="overflow-y-auto p-3 lg:p-6 lg:pl-1 w-full">{props.children}</Box>
</Box>
</Box>
);