diff --git a/views/embed/stream.njk b/views/embed/stream.njk
index ddc620f8e..c9504b3d0 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 it's overrides will apply #}
+{% include "partials/custom-css.njk" %}
{% endblock %}
{% block html %}
diff --git a/views/login.njk b/views/login.njk
index 6a3c1112f..55e4ef45b 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 it's 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..0ff558c9d 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 it's 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 #}