I have my Python Dash application with some css assets.
For example, I want to have all my dbc.Label()
bold, so I included in my assets/style.css
this code:
.form-label {
font-weight: bold
}
I see that assets affect desired changes when I run it locally, while after deployment in RSConnect all css assets are ignored. I checked this discussion, since it looked similar for me, however, it did not help.
Does someone have any ideas about the causes of issue?
Thank you in advance!