From f751d6abcab949a27bc7d81d0396639bef3b3fd2 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Wed, 25 Aug 2021 11:37:03 +0200 Subject: [PATCH] col-8 changed to col-10 for success flash message to fix display --- src/Bundle/ChillMainBundle/Resources/views/layout.html.twig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Resources/views/layout.html.twig b/src/Bundle/ChillMainBundle/Resources/views/layout.html.twig index 140557d69..b62ae622c 100644 --- a/src/Bundle/ChillMainBundle/Resources/views/layout.html.twig +++ b/src/Bundle/ChillMainBundle/Resources/views/layout.html.twig @@ -53,8 +53,12 @@ {% block sublayout_content %}
+ {# col-8 : width wasn't long enough. It would cause the message to be displayed on the left of + the screen and the list of activities on the right... + I don't know if this needs to be changed for the other flash messages too? + For other pages, it doesn't change much visually. #} {% for flashMessage in app.session.flashbag.get('success') %} -
+
{{ flashMessage|raw }}
{% endfor %}