angular-ui / ui-layout

This directive allows you to split !
http://angular-ui.github.io/ui-layout/
MIT License
406 stars 198 forks source link

Flow Direction - is it reversed? #110

Open mickeyvip opened 9 years ago

mickeyvip commented 9 years ago

I noticed that the flow direction, which is stated to follow flex-box is actually behaves the opposite to the flex-box.

flow: "column" - render items side by side, although the main axis is set to column, meaning vertical, as it is in flex-box. flow: "row" - render items one under another, although the main axis is set to row, meaning horizontal as it is in flex-box.

Here is an article from CSS Tricks with examples: https://css-tricks.com/snippets/css/a-guide-to-flexbox/

Or am I missing something?

SomeKittens commented 9 years ago

Good point. Our "row" means "split things up into rows", rather than "arrange everything on the same row". The docs could use some clearing up on that.

BobbieBarker commented 9 years ago

I'll take this one as well.