New to MUI. My element seems to be touching the edge of the screen on mobile. I tried adding padding and margins but it just squeezes the element.
https://codesandbox.io/s/proud-architecture-69b0jv?file=/App.js:2727-3108&resolutionWidth=748&resolutionHeight=675 (Paper element is on line 94)
<Paper
sx={{
pt: 1,
border: 1,
boxShadow: 0,
justifyContent: "center",
margin: "auto",
mt: 1,
maxWidth: 800,
flexGrow: 1,
backgroundColor: (theme) =>
theme.palette.mode === "dark" ? "#1A2027" : "#fff"
}}
>


