geposanui/R/style.R

18 lines
487 B
R
Raw Normal View History

#' Custom CSS to tweak the rendering.
#' @noRd
custom_css <- function() {
tags$head(
tags$style(HTML(
".nav-hidden { height: 0 }",
".flow-layout > div {",
"display: inline-block;",
"vertical-align: top;",
"margin-right: 12px;",
"}",
2022-08-18 12:21:00 +02:00
".shiny-input-container { width: auto !important; min-width: 200px; }",
"h5 { margin-top: 0.5rem; margin-bottom: 1rem; font-weight: bold; }",
".navbar-brand { font-weight: bold; }"
))
)
}