bslib icon indicating copy to clipboard operation
bslib copied to clipboard

Add wrapper for .row-cols-*

Open cpsievert opened this issue 3 years ago • 1 comments

Available in BS4+

https://getbootstrap.com/docs/4.6/layout/grid/#row-columns

cpsievert avatar May 25 '21 14:05 cpsievert

Something like

row_cols <- function(x, ...) {
  div(
    class = paste0("row row-col-", x),
    lapply(list(...), function(y) div(class = "col", y)
  )
}

cpsievert avatar May 25 '21 14:05 cpsievert

We now have layout_column_wrap(), which is similar but more general

cpsievert avatar Oct 27 '22 15:10 cpsievert

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.

github-actions[bot] avatar Jul 19 '23 03:07 github-actions[bot]