Hi community, first time here. I have a question regarding dbc InputGroupAddon formatting
I have three inputs with inputgroupaddon prepended. I want to align the addon vertically but I don’t know how to do that. Here’s my code:
dbc.InputGroup(
[
dbc.InputGroupAddon("Issued year greater than ", addon_type='prepend'),
dbc.Input(id = 'filter_year', value = 2018, type = 'number', debounce=True)
], size = 'sm'
),
dbc.InputGroup(
[
dbc.InputGroupAddon("Outstanding amount greater than ", addon_type ='prepend'),
dbc.Input(id = 'filter_amt', value = 300, type = 'number', debounce=True),
dbc.InputGroupAddon("million", addon_type ='append'),
], size = 'sm'
),
dbc.InputGroup(
[
dbc.InputGroupAddon("Last 30 days volumn greater than ", addon_type='prepend',),
dbc.Input(id = 'filter_vol', value = 10, type = 'number', debounce=True),
dbc.InputGroupAddon("million", addon_type ='append'),
], size = 'sm'
)