diff --git a/assets/css/app.scss b/assets/css/app.scss index 50c41e8e..c53fc771 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -11,6 +11,9 @@ legend.required::before { } footer { + margin-top: 100px; + padding-top: 50px; + padding-bottom: 30px; background-color: #f7f7f7; box-shadow: inset 0 3px 3px -1px rgba(227, 227, 227, 1); } diff --git a/templates/_footer.html.twig b/templates/_footer.html.twig new file mode 100644 index 00000000..6deb658f --- /dev/null +++ b/templates/_footer.html.twig @@ -0,0 +1,8 @@ + diff --git a/templates/base.html.twig b/templates/base.html.twig index 41c04c7a..d9723ed0 100644 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -36,6 +36,9 @@
{% block body %}{% endblock %}
+ + {% include '_footer.html.twig' %} + {% block javascripts %} {{ encore_entry_script_tags('app') }} {% endblock %} diff --git a/templates/organization/base.html.twig b/templates/organization/base.html.twig index 80546110..de33ffad 100644 --- a/templates/organization/base.html.twig +++ b/templates/organization/base.html.twig @@ -40,14 +40,7 @@ {% endblock %} - + {% include '_footer.html.twig' %} {% block javascripts %} {{ encore_entry_script_tags('app') }}