Skip to content

Commit

Permalink
Merge branch 'master' into fix/scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-gueguen committed Nov 5, 2024
2 parents b6d43bf + 486e760 commit 443756e
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions web/common/semantics/Main.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
import React from "react";
import Container from "@mui/material/Container";

export const Main = ({
className,
maxWidth = "xl",
sx = {},
style = {},
children,
...otherProps
}) => (
export const Main = ({ maxWidth = "xl", sx = {}, children, ...otherProps }) => (
<Container
component="main"
role="main"
id="content"
className={className}
maxWidth={maxWidth}
style={style}
sx={{
...sx,
padding: { xs: 0, md: "initial" }
Expand Down

0 comments on commit 443756e

Please sign in to comment.