ubigen/R/style.R

27 lines
587 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 {",
2022-12-15 13:14:34 +01:00
" display: inline-block;",
" vertical-align: top;",
" margin-right: 12px;",
"}",
".container h2, .container h3 {",
" margin-top: 64px;",
"}",
"",
".container table {",
" margin-top: 32px;",
" margin-bottom: 32px;",
"}",
"",
".container th, .container td {",
" padding: 4px;",
2022-06-02 10:17:49 +02:00
"}"
))
2022-05-30 21:27:18 +02:00
)
}