Hi all,
I’m using some simple radio buttons which are working fine, but i’m having trouble with the style - I’d simply like to add some spacing between the actual radio buttons and the labels, but I can only seem to add spacing margins or padding to the whole component itself:
html.Div([
dcc.Checklist(
options=[
{'label': 'Live chat', 'value': 'live_chat'},
{'label': 'Emails', 'value': 'emails'},
{'label': 'Phone calls', 'value': 'phone_calls'}
],
values=['live_chat'],
labelStyle = {'display': 'block', 'cursor': 'pointer', 'margin-left':'20px'}
)
],
style = {
'padding-top': '20px'
}
)
Is there something within style or labelStyle i need to set, or something elsewhere? Thanks in advance!