I am using external css style sheets to get some custom fonts
external_css = ["https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css",
"//fonts.googleapis.com/css?family=Roboto|Lato"]
for css in external_css:
app.css.append_css({"external_url": css})
I am also trying to use a grid from another style sheet:
app.css.append_css({
'external_url': 'https://codepen.io/chriddyp/pen/bWLwgP.css'
})
However, that causes conflict and the app style doesn’t pick up the custom fonts I needed.
How can I mitigate this issue?