I'm facing an issue with the stacking order of grid items when the browser shrinks.
On a regular desktop screen (lg):
---------------------------------------------
| col 1 | col 2 | col 3 |
---------------------------------------------
However, upon shrinking the browser, the layout looks like this:
-------------------------
| col 1 |
-------------------------
-------------------------
| col 2 |
-------------------------
-------------------------
| col 3 |
-------------------------
Is it possible to achieve the following arrangement on a mobile screen using material ui Grid layout:
-------------------------
| col 1 |
-------------------------
-------------------------
| col 3 |
-------------------------
-------------------------
| col 2 |
-------------------------
I've come across articles discussing changing the order of CSS grids for similar issues, but I'm wondering how to implement this using material-ui Grid layout.