diff --git a/views/embed/stream.njk b/views/embed/stream.njk index ddc620f8e..9b237b5c2 100644 --- a/views/embed/stream.njk +++ b/views/embed/stream.njk @@ -5,6 +5,9 @@ {% block css %} + +{# Custom CSS is included after the CSS block so that its overrides will apply #} +{% include "partials/custom-css.njk" %} {% endblock %} {% block html %} diff --git a/views/login.njk b/views/login.njk index 6a3c1112f..7198dbdff 100644 --- a/views/login.njk +++ b/views/login.njk @@ -4,6 +4,9 @@ {% block css %} + +{# Custom CSS is included after the CSS block so that its overrides will apply #} +{% include "partials/custom-css.njk" %} {% endblock %} {% block html %} diff --git a/views/templates/account.njk b/views/templates/account.njk index 7e1b6e6c9..bcda22a67 100644 --- a/views/templates/account.njk +++ b/views/templates/account.njk @@ -3,4 +3,7 @@ {% block css %} + +{# Custom CSS is included after the CSS block so that its overrides will apply #} +{% include "partials/custom-css.njk" %} {% endblock %} diff --git a/views/templates/base.njk b/views/templates/base.njk index 23048151e..3a5331a1d 100644 --- a/views/templates/base.njk +++ b/views/templates/base.njk @@ -19,7 +19,6 @@ - {% include "partials/custom-css.njk" %} {% block css %}{% endblock %} {# Static data injection #}