Separate CSS for each app

While reading the “Structuring a Multi-Page App” (https://dash.plot.ly/urls), I was curious if each app (i.e. app1.py and app2.py) could reference their own CSS file, either via the /assets folder or via external references in either file.

Hi, did you find any solution? I have the same problem and did not find any nice solution. The only solution I found is to use this in each app layout:

html.Link(
    rel='stylesheet',
    href='/static/app1.css')
),

I did not find a solution…just decided to redesign layouts of each app to utilize the same css file…