Skip to content
Snippets Groups Projects
Commit 8a47cfb3 authored by Tomi Valentová's avatar Tomi Valentová
Browse files

fix alignment

parent 7471a63e
No related branches found
No related tags found
2 merge requests!1073fix alignment,!1072Fix alignment
Pipeline #19120 passed
...@@ -16,7 +16,19 @@ ...@@ -16,7 +16,19 @@
{% endfor %} {% endfor %}
<form <form
class="flex flex-col gap-8" class="
flex flex-col gap-8
{% if not page.root_page.content_is_full_width %}
max-w-[100ch]
{% else %}
max-w-[100%]
{% endif %}
{% if page.root_page.content_is_centered %}
mx-auto
{% endif %}
"
action="{% pageurl page %}" action="{% pageurl page %}"
method="post" method="post"
> >
......
<div
class="
{% if not page.root_page.content_is_full_width %}
max-w-[100ch]
{% else %}
max-w-[100%]
{% endif %}
{% if page.root_page.content_is_centered %}
mx-auto
{% endif %}
"
>
<{{ self.tag }} <{{ self.tag }}
class=" class="
{{ responsive_style }} {{ responsive_style }}
...@@ -9,3 +22,4 @@ ...@@ -9,3 +22,4 @@
> >
{{ self.headline }} {{ self.headline }}
</{{ self.tag }}> </{{ self.tag }}>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment