resolved custom css loading issue

This commit is contained in:
Wyatt Johnson
2018-05-31 11:27:02 -06:00
parent a638dafd85
commit 9d752685cd
4 changed files with 9 additions and 1 deletions
+3
View File
@@ -5,6 +5,9 @@
{% block css %}
<link href="{{ resolve('embed/stream/default.css')}}" rel="stylesheet">
<link href="{{ resolve('embed/stream/bundle.css')}}" rel="stylesheet">
{# Custom CSS is included after the CSS block so that it's overrides will apply #}
{% include "partials/custom-css.njk" %}
{% endblock %}
{% block html %}
+3
View File
@@ -4,6 +4,9 @@
{% block css %}
<link href="{{ resolve('coral-login/bundle.css')}}" rel="stylesheet">
{# Custom CSS is included after the CSS block so that it's overrides will apply #}
{% include "partials/custom-css.njk" %}
{% endblock %}
{% block html %}
+3
View File
@@ -3,4 +3,7 @@
{% block css %}
<link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css">
<link rel="stylesheet" href="{{ BASE_PATH }}public/css/admin.css">
{# Custom CSS is included after the CSS block so that it's overrides will apply #}
{% include "partials/custom-css.njk" %}
{% endblock %}
-1
View File
@@ -19,7 +19,6 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600" rel="stylesheet">
{% include "partials/custom-css.njk" %}
{% block css %}{% endblock %}
{# Static data injection #}