Make custom genes default in comparison editor

This commit is contained in:
Elias Projahn 2022-06-22 13:55:47 +02:00
parent e7cbb4ea33
commit 4378e87b2a
4 changed files with 23 additions and 11 deletions

14
R/style.R Normal file
View file

@ -0,0 +1,14 @@
#' 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;",
"}"
))
)
}