Could you help me to reduce the space between fileInput and text in Shiny? I would like to leave something similar to the Figure that I have attached. The executable code is below.
Thank you!
runApp(
list(ui = fluidPage(
fileInput("data", h3("Excel database import")), uiOutput("tab"),
),
server = function(input, output, session){
url <- a("Google Homepage", href="https://www.google.com/")
output$tab <- renderUI({
tagList("Access the page:", url)
})
})
)

