I have the following Shiny App.
library(shiny)
ui <- shinyApp(
shinyUI(
navbarPage("X-men",
tabPanel("Plot"),
tabPanel("Summary" )
)),
server <- shinyServer(function(input, output) {})
)
# Run the application
shinyApp(ui = ui, server = server)
Which produce things like this:
As stated in that image. How can I move Summary tab panel to the right?
Update
After HubertL suggestion :
Notice the distortion and it's not "Summary" which get moved to the right.


