Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.0.1 lgv update #15

Merged
merged 9 commits into from
Jul 19, 2022
Prev Previous commit
Next Next commit
Update custom app example to use inline CSS
  • Loading branch information
elliothershberg committed Jul 18, 2022
commit 0caddc6a147afe5d21b38da146a5a2a1699556e3
5 changes: 5 additions & 0 deletions example_apps/custom_app.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ library(shiny)
library(JBrowseR)

ui <- fluidPage(
tags$head(
tags$style(HTML(
"html { font-size: 14px }"
))
),
titlePanel("JBrowseR Example"),
JBrowseROutput("widgetOutput")
)
Expand Down