geposanui/R/style.R

10 lines
196 B
R
Raw Normal View History

#' Custom CSS to tweak the rendering.
#' @noRd
custom_css <- function() {
tags$head(
2024-02-18 18:03:55 +01:00
tags$style(HTML(includeText(
system.file("misc", "style.css", package = "geposanui")
)))
)
}