Can anyone help with setting the top/bottom margin for the tabs in a tabsetPanel in shiny using CSS?
Here's an example code
library(shiny)
shinyApp(
ui=shinyUI(
fixedPage(
tabsetPanel(
tabPanel("Data Input",
fixedRow(
column(12,
h6("test"))
)
)
)
)
)
,
server=shinyServer(function(input, output) {
})
)