Is there any way to fit some sort of text on shinydashboard
with word wrap? The default behaviour seems to be for it to spill over into the body area.
I would like to avoid modifying css directly however if there is a workaround which involves modifying CSS as part of the server / ui code itself then I'm open to that.
ui <- dashboardPage(
dashboardHeader(
title = "Sidebar spill"
),
dashboardSidebar(
sidebarMenu(
menuItem(text = "sfsdf sfaosh oas fwue wi aseiu wehw wuer woeur owuer ")
)
),
dashboardBody(
fluidRow(
)
)
)
server <- function(input, output) {
}
shinyApp(ui, server)
}
overflow
. – TheComeOnMantags$head(tags$style(PUTCSSCODEHERE))
. You can always paste together your css programmatically if you're willing to return those tags from arenderUI
– Shape