side by side valueboxes in flexdashboard

Can sidebar valueboxes be arranged in columns?
E.g., below is a reprex. I'd like these to be arranged side by side in a single row (so i can put a different target below it)
(sorry i can't get the entire thing to display as code)

---
title: "Halp!"
output: flexdashboard::flex_dashboard
---

```{r}
library(flexdashboard)
Inputs {data-width=150 .bg-secondary}
-------------------------------------

### Total applications submitted 

```{r tot_submitted}
valueBox(10, icon = "fa-pencil")
### Percent of target

```{r approved}
gauge(30, min = 0, max = 50, gaugeSectors(
  success = c(41, 50), warning = c(21, 40), danger = c(0, 20)
))

Column
-------------------------------------
    
### More plots go here

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do 

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.