ValueBoxOutput with boundary outline

I would like to see if it is possible to have a black outline for ValueBoxOutput.
Reason being that in cases where I have a grey color for ValueBoxOutput, it is the same as the background color, and it does not look good.

Code looks like below:

output$Test <- renderValueBox({
  boxContent <- div(class = paste0("small-box bg-",'grey'),
                    div(class = "inner",h2('Test'), h3('Test'),
                        class = "inner",h4('Test'))
  )
  width <- 14
  div(class = if (!is.null(width))
    paste0("col-sm-", width), boxContent)
})

This topic was automatically closed 21 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.