Is there a way to adjust the spacing between Grid items in Material UI? Here's the code I currently have:
<Grid container spacing={1}>
<Grid item xs={6}>Node 1</Grid>
<Grid item xs={6}>Node 2</Grid>
...and so on
</Grid>
The issue I'm facing is that when I set spacing={1}
, the margin between items is slightly larger than desired. How can I customize the margin value between these items?