Dash mantine components model DatePicker looks weird

I am using below code for dmc DatePicker and dash-mantine-components==0.14.4.

dmc.DatePicker(
id=“in-add-IPE-DI”,
placeholder=“Date Of Issuance”,
clearable=True,
)

But the modal that opens looks like the attached screenshot.
Screenshot (228)

Hi @khanjee
Did you remember to add the additional stylesheet?


app = Dash(external_stylesheets=[dmc.styles.DATES])

3 Likes

completely missed that out sorry. :slight_smile:
Thank you so much. Always look upto you guys. <3

1 Like