Is there any way to customize some text on shinydashboard with word shinydashboard ? The default behavior seems to be due to the fact that it flows into the area of ββthe body.
I would like to avoid changing css directly, however, if there is a workaround that involves modifying CSS as part of the server / ui code itself, then I am open to this.
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) }
source share