Skip to content

Commit

Permalink
vinvoor: use full width
Browse files Browse the repository at this point in the history
  • Loading branch information
Topvennie committed Oct 27, 2024
1 parent 16f6c2f commit 48810d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vinvoor/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const App = () => {
)}
</LoadingSkeleton>
</Container>
<Container sx={{ my: "2%" }}>
<Container maxWidth="xl">
<Footer />
</Container>
</Box>
Expand Down
4 changes: 1 addition & 3 deletions vinvoor/src/footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Container, Icon, Link } from "@mui/material";
import { Box, Icon, Link } from "@mui/material";
import { TypographyG } from "../components/TypographyG";
import { useVersion } from "../hooks/useVersion";
import ZeusIcon from "/zeus.svg";
Expand All @@ -7,7 +7,6 @@ export const Footer = () => {
const { data: version } = useVersion();

return (
<Container disableGutters maxWidth="xl">
<Box
sx={{
display: "flex",
Expand Down Expand Up @@ -47,6 +46,5 @@ export const Footer = () => {
© 2024
</Link>
</Box>
</Container>
);
};

0 comments on commit 48810d1

Please sign in to comment.