Is there a way to define the precise width of a sidebarPanel
in pixels instead of using the width
argument? I have found that the width option is not precise enough for my needs.
library(shiny)
ui <- fluidPage(
sidebarLayout(
sidebarPanel(width = 5), # This is not accurate enough!
mainPanel()))
server <- function(input, output, session) {}
shinyApp(ui, server)