I am using this widget
dbc.Col(
[
dbc.Label(“myLabel:”, html_for=“myId”),
html.Br(),
dcc.DatePickerSingle(
id=‘myId’,
min_date_allowed=date(1990, 1, 1),
max_date_allowed=date.today(),
initial_visible_month=date.today(),
date=date.today()
)
], width=3),
to display a date picker. The size of the widget is a bit too big for my purpose

is there a option to control the size of the widget itself, not the date font size. I don’t see any in this reference: DatePickerSingle | Dash for Python Documentation | Plotly
Thanks
1 post - 1 participant





