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
When the name in the markers is long, it can expand outside of the cell. But, as there is a mini photo just besides, it could be displayed as multiline.
I looked at different solutions with the help of Claude Sonnet 3.5:
add 'is-multiline' class to the "button" : no effect at all
add "is-flex-wrap-wrap" class to the button: the line break is after the photo, the text is left unwrapped
add "has-text-wrap" class to the button: no effect
add "white-space: normal" style to the button, and then it works!
So I tried to find how to express that with Bulma, but I didn't find any way...
I finally created my own CSS class:
.button-wrap {
white-space: normal !important
}
Wouldn't i be worth having this as a supported Bulma class?
The text was updated successfully, but these errors were encountered:
Overview of the problem
This is about Bulma 1.0.1
Inside a grid, I have some html code like this:
When the name in the markers is long, it can expand outside of the cell. But, as there is a mini photo just besides, it could be displayed as multiline.
I looked at different solutions with the help of Claude Sonnet 3.5:
So I tried to find how to express that with Bulma, but I didn't find any way...
I finally created my own CSS class:
The text was updated successfully, but these errors were encountered: