bslib
bslib copied to clipboard
Add wrapper for .row-cols-*
Available in BS4+
https://getbootstrap.com/docs/4.6/layout/grid/#row-columns
Something like
row_cols <- function(x, ...) {
div(
class = paste0("row row-col-", x),
lapply(list(...), function(y) div(class = "col", y)
)
}
We now have layout_column_wrap()
, which is similar but more general
This issue has been automatically locked. If you believe you have found a related problem, please open a new issue (with a reproducible example or feature request) and link to this issue.