dashboard shadow fix

There was a problem where the shadow of components would get cut off by the container on large screens
This commit is contained in:
rsandb
2023-01-16 19:45:43 -06:00
parent 43547ff11a
commit 03defa2bec
+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>
);