dbc.CardBody font setting

The dbc.CardBody font seems hard set to Times New Roman. Defining

.card .card-body .card-text {
  font-family: Arial, Helvetica, sans-serif; !important;
}

or using an additional className setting as suggested somewhere does not change it. Defining

style={'font-family': 'Arial, Helvetica, sans-serif'}

does change it but I don’t want to have to do that with every Card definition.

It’s hard to tell what css selector you should use without seeing your code but I’m guessing you just have to remove the .card-text part in your css.

Also removing the !important after the semi-colon may help.