added close button to sidebar

I added the close button to the sidebar (no functionality yet). I also fixed the canvas grid width and height
This commit is contained in:
2025-07-09 08:43:52 -07:00
parent e3d4054e0c
commit 186e8baefc
4 changed files with 12 additions and 26 deletions
+6 -6
View File
@@ -7,8 +7,8 @@ import { Box } from "@chakra-ui/react"
function App() {
return (
<Grid
templateRows="1fr 11fr"
templateColumns="2fr 10fr"
templateRows="0.75fr 11.25fr"
templateColumns="1fr 11fr"
height="100vh"
width="100vw"
>
@@ -21,11 +21,11 @@ function App() {
<GridItem colSpan={1}>
<Grid
templateRows="repeat(6 1fr)"
templateColumns="repeat(6 1fr)"
height="100vh"
width="100vw"
templateColumns="repeat(4 1fr)"
height="100%"
width="100%"
>
<Widgets></Widgets>
{/* <Widgets></Widgets> */}
</Grid>
</GridItem>
</Grid>