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
Provided there are little too many columns, if there are multiple buttons on a row, they will wrap up onto multiple lines. This tremendously increases amount to scroll around vertically. There is a closed twbs issue https://github.com/twbs/bootstrap/issues/ number 9939 (I don't want to pollute that issue). Apparently one way is to set width to prevent wrapping. While one can specify width for button, that will go towards td and not div with btn-group 🙁 One way to handle this would be to pass opt as locals to buttons template and use it there instead (by deleting from opts?) of td.
TL;DR apparently .btn-group { display: flex; } is more than enough. Add it by default and close this?
The text was updated successfully, but these errors were encountered:
Provided there are little too many columns, if there are multiple buttons on a row, they will wrap up onto multiple lines. This tremendously increases amount to scroll around vertically. There is a closed twbs issue https://github.com/twbs/bootstrap/issues/ number 9939 (I don't want to pollute that issue). Apparently one way is to set width to prevent wrapping. While one can specify width for button, that will go towards td and not div with btn-group 🙁 One way to handle this would be to pass opt as locals to buttons template and use it there instead (by deleting from opts?) of td.
TL;DR apparently
.btn-group { display: flex; }
is more than enough. Add it by default and close this?The text was updated successfully, but these errors were encountered: