So when I increase the height of the main header in a Shinydashboard app all of a sudden a dot appears...why? And how can I remove it?
library(shiny)
library(shinydashboard)
ui <-
dashboardPage(
title = "Test",
header = dashboardHeader(
# increase header height
tags$li(
class = "dropdown",
tags$style(".main-header {min-height: 75px}")
),
title = a(target="_blank", href = 'https://www.google.com',
img(src = 'https://img.freepik.com/free-icon/search_318-265146.jpg', title = "Test", height = "75px"))
),
sidebar = dashboardSidebar(),
body = dashboardBody()
)
server <- function(input, output) {}
shinyApp(ui, server)