I have a two-column layout consisting of a sidebar on the left and a map on the right. The sidebar has two boxes; one for a search input and one for a list of the results. So on desktop it looks like this:
+--------------+---------------------+
| search input | |
+--------------+ map |
| results | |
| ... | |
+--------------+---------------------+
On mobile, I want everything to be displayed in a single column, but with the map between the search input and the results, so it's more of a structural change than a simple flex-direction/ordering change:
+------------------------------------+
| search input |
+------------------------------------+
| |
| map |
| |
+------------------------------------+
| results |
| ... |
+------------------------------------+
Is this possible?