flex-direction
Since UXP v3.0
Determines the direction items are stacked in the flexible container. The default is row, and row, row-reverse, column, and column-reverse are supported.
See: https://developer.mozilla.org/en/docs/Web/CSS/flex-direction
Example
.someElement {
flex-basis: column;
}