I use
gridTemplateColumns: `repeat(auto-fill, minmax(250px, 1fr))`,
to get two columns, if their width less than 250px, I get layout:
[1] [2]
And if the width is less than 250, I get layout:
[1]
[2]
I wonder if it is possible to have vertical layout flipped:
[2]
[1]
while keeping horizontal as described first [1] [2]
.