I am currently working with Material UI, but maybe this is just a matter of understanding how to achieve it with Flexbox. Something similar to what is shown in the image below. I am struggling to make all three lines align in the same way on different screen widths. https://i.sstatic.net/FSHwu.png
Here is what I have so far:
<Grid container justify="center">
<Grid xs={7}>
<Grid item container direction="column">
<Grid container justify="flex-start">
<p>
Please review the items in the list below and mark them as complete.
</p>
</Grid>
<Grid container justify="center">
Icon
</Grid>
<Grid>
<ul>
<li>List item</li>
<li>List item</li>
</ul>
</Grid>
</Grid>
</Grid>
</Grid>
Any help or guidance is greatly appreciated. Thank you!