ubigen/R/style.R

15 lines
287 B
R
Raw Normal View History

2022-05-30 21:27:18 +02:00
#' Custom CSS to tweak the rendering.
#' @noRd
custom_css <- function() {
tags$head(
2022-06-02 10:17:49 +02:00
tags$style(HTML(
".nav-hidden { height: 0 }",
".flow-layout > div {",
"display: inline-block;",
"vertical-align: top;",
"margin-right: 12px;",
"}"
))
2022-05-30 21:27:18 +02:00
)
}