Open adastrame opened 2 years ago
I had an issue with this theme in that the stylesheets were not correctly imported, they were parsed as <style ... in HTML etc. I fixed this problem by changing lines 29ff of base.html.twig to the following.
<style ...
{% block stylesheets %} {% do assets.addCss('theme://css/screen.css') %} {% endblock %} {% block assets deferred %} {{ assets.css()|raw }} {% endblock %}
I had an issue with this theme in that the stylesheets were not correctly imported, they were parsed as
<style ...
in HTML etc. I fixed this problem by changing lines 29ff of base.html.twig to the following.