Carlos/Piotr,
What is the right way to horizontal flow layout for an mdl:List?
I tried using the HorizontalFlowLayout, but I don't think they are
compatible.
I ended up doing this:
.membersList {
display: flex !important;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
The !important on the display is required because by default mdl:List uses
block.
In general, the layout-ing stuff is a bit confusing with MDL. The
components themselves work great, though!
Thoughts?
Thanks,
Om