I had an issue when using overflow: hidden deeply nested inside the masonry structure, causing one column to grow wider than the others. Adding min-width: 0; to the column styles fixed this, as explained in this article:
https://css-tricks.com/flexbox-truncated-text/
Would it be an idea to add this by default? I don't think it has any side effects and might make things a bit more stable in this specific situation.
I had an issue when using overflow: hidden deeply nested inside the masonry structure, causing one column to grow wider than the others. Adding
min-width: 0;
to the column styles fixed this, as explained in this article: https://css-tricks.com/flexbox-truncated-text/Would it be an idea to add this by default? I don't think it has any side effects and might make things a bit more stable in this specific situation.
Thanks for the awesome component btw!