Hi @RubberDuckers,
Was great to meet you in London last week! Hope you’re doing well. To confirm, no this isn’t possible in the inspector, but as @urchindesign mentioned it is something that will be possible in the future. Our goal is to make all styling controls adjustable per breakpoint. This is similar to how competing builders allow you to adjust things like spacing at different screen sizes.
Because the new row uses flexbox, this is pretty easy to do by assigning an order to the Column with custom CSS. Inspect a Column, then go to Element CSS and enter this:
@media (max-width: 480px) {
$el { order: 1; }
}
If you set an order of 1 on the first column, it will move to the second position. It’s not quite reversing the order, but does give you final control over where things are placed.