You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The meta data or button should appear under the card
Actual result
The meta data or button is forced to the right
Description
This is caused because of flex-direction: row when setting flex-wrap: wrap buttons then flow under the card but meta data will force the content to go under the image. If the content is too long it will also wrap to the next row.
…align properly
As reported in fomantic#159, the meta data, actions and extra content are forced to display in one row in horizontal cards. It's because of `flex-direction: row` setting `flex-wrap: wrap`, and the flex item for meta data has no initial size. So, it forces the other flex items to wrap in available spaces next to it which leads them displaying in the same row.
Since, the extra content and buttons are always supposed to appear on the next line and should take 100% width of the card. The meta data should have initial size with minimum value which will make sure the meta data to wrap in the available space on the current row and the extra content and buttons to appear in the next row respectively.
Closesfomantic#159
Bug Report
Steps to reproduce
Expected result
The meta data or button should appear under the card
Actual result
The meta data or button is forced to the right
Description
This is caused because of
flex-direction: row
when settingflex-wrap: wrap
buttons then flow under the card but meta data will force the content to go under the image. If the content is too long it will also wrap to the next row.Testcase
https://jsfiddle.net/Lwxau2yn/
Screenshot
Version
2.6.2
The text was updated successfully, but these errors were encountered: