Skip to content

Commit

Permalink
fix: remove xs prop to match grid v2 api
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludea committed Sep 8, 2024
1 parent 7c47def commit f3d32e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ function App() {
spacing={0}
m={-1}
sx={{
height: "100vh",
width: "100vw",
height: 600,
width: 800,
backgroundSize: "cover",
backgroundImage: `url(${DesktopBackground})`,
display: {
Expand All @@ -57,10 +57,10 @@ function App() {
},
}}
>
<Grid xs={12}>
<Grid>
<Header />
</Grid>
<Grid xs={12}>{DesktopRouting}</Grid>
{DesktopRouting}
</Grid>
<Grid
container
Expand Down

0 comments on commit f3d32e5

Please sign in to comment.