I have the following code
<Box sx={{height:'100vh', background: '#f5f7fc', overflow:'auto'}}><Grid container justifyContent={'center'} padding={2}><Grid item xs={12}><Typography align="center" fontSize={30}>Welcome! Please enter your childs information</Typography></Grid><Grid item xs={10}><Paper><Grid container padding={2}><Grid item xs={6}><TextField fullWidth label='First Name'/></Grid><Grid item xs={6}><TextField fullWidth label='Last Name'/></Grid></Grid></Paper></Grid></Grid></Box>
which shows up like this, as I expect
Now, when I add spacing like
<Paper><Grid container padding={2} spacing={2}>
all of a sudden the Paper sticks out above Grid, and the padding on the right no longer matches the padding on the left
My question is this: what?