In the Shiny navbarpage, is it possible to add 2 sidebar panels with space in between, as illustrated in the diagram linked below? Can we use HTML tags to achieve this spacing?
https://i.sstatic.net/jXBXo.png
Below is the code for it (Essentially, I require a gap between tickers)
ui.R
# Define UI for application that draws a histogram
navbarPage("Trading",
selected = "Data",
tags$script(src = "app.js"),
tags$style("body {background-color: skyblue;}"),
tabPanel("Data",
sidebarLayout(
sidebarPanel(selectInput('ticker','Ticker',choices = c("",levels(factor(Ticker$Ticker))),selected = ""),
# uiOutput("measures"),
# uiOutput("interval"),
# uiOutput("click_button"),
selectInput('ticker1','Ticker',choices = c("",levels(factor(Ticker$Ticker))),selected = ""),
width = 2),
mainPanel(dataTableOutput("display"))
)))