I have a R Shiny dashboard with a higher header (wel title cause the logo is set to height = "55px") ...however the pin of the controlbar is than under the header. How to fix this? This is particulary with disabled dashboardSidebar
library(shiny)
library(shinydashboard)
ui <-
dashboardPage(
title = "Test",
header = dashboardHeader(
title = a(target="_blank", href = 'https://www.google.com',
img(src = 'https://img.freepik.com/free-icon/search_318-265146.jpg', title = "Test", height = "55px"),
style = "padding-top:10px; padding-bottom:10px; padding-left:10px;")
),
sidebar = dashboardSidebar(disable = T),
body = dashboardBody(),
controlbar = dashboardControlbar(
width = 300,
pinned = T,
)
)
server <- function(input, output) {}
shinyApp(ui, server)