How do I change the font size of dropdown menu items?
dbc.InputGroup(
[
dbc.InputGroupAddon("Address"),
dcc.Input(id='address_autocomplete', style={'width':'76%'}),
dcc.Dropdown(id='address_dropdown',
placeholder="Address Suggestions",
style={'width':'100%', 'display':'inline-block'})
],
style={'margin-top':'30px', 'width': '53%', 'float': 'left'},
),