How can I make actionButton
its label smaller, but the icon is still in the center of the button? I managed to make the button and the text smaller, but the result is a small button with small text that is not centered in the button. I think I'm probably wrong. Here is an example where the button / text is reduced, but the result is a button with text not centered.
library(shiny)
shinyApp(
shinyUI(fluidPage(
inputPanel(
actionButton('button', 'Hi'),
gsub('Hi', '<font size="1">Hi</font>',
actionButton('button1', 'Hi')),
gsub('Hi', '<font size="1" align="center">Hi</font>',
actionButton('button2', 'Hi', style='height:20px'))
)
)),
shinyServer(function(input,output){})
)
source
share