Last active
February 1, 2021 03:08
-
-
Save homerhanumat/bc7ac9cbf93b24552134 to your computer and use it in GitHub Desktop.
Shiny dashboard with yellow sidebar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(shiny) | |
library(shinydashboard) | |
ui <- dashboardPage( | |
dashboardHeader(), | |
dashboardSidebar(), | |
dashboardBody(), | |
tags$head(tags$style(HTML(" | |
.skin-blue .main-sidebar { | |
background-color: yellow; | |
}"))) | |
) | |
server <- function(input, output) { } | |
shinyApp(ui, server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you a lot!
I didn't know about
!important
. It is excellent.