I have designed a simple dropdownButton from the shinyWidgets package. Somehow I am unable to change the css parameters of the widget.
dropdownButton( icon = icon('info'), size = 'sm', right = T, up = F, width = '400px',
div('my text', style = 'font-size:10px'))
I have tried to follow the css adjustment of the link here shinywidget dropdownButton CSS tag
However this only changed the pop-up window's params.
I tried to inspect the element and find the css codes but in vain.
Ideally I need to change the size of the button, the background color and opacity.
Thank you