Skip to content

Commit

Permalink
fix fullpage layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed May 15, 2023
1 parent c5986da commit 0061d82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/error.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{% set errorMessageTrans = errorSuggestionTrans %}
{% endif %}

<div class="container-tight py-4">
<div class="container container-tight py-4">
<div class="empty">
<div class="empty-header">{% block error_code %}{{ status_code }}{% endblock %}</div>
<p class="empty-title">
Expand Down
2 changes: 2 additions & 0 deletions templates/fullpage.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
{% block after_body_start %}{% endblock %}

<div class="page page-center">
<div class="container">
{% block page_content %}{% endblock %}
</div>
</div>

{% block javascripts %}
Expand Down
2 changes: 1 addition & 1 deletion templates/security.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{% block page_before %}{% endblock %}
<div class="{% block page_classes %}page page-center{% endblock %}">
{% block container_before %}{% endblock %}
<div class="{% block container_classes %}container-tight py-4{% endblock %}">
<div class="{% block container_classes %}container container-tight py-4{% endblock %}">
<div class="text-center mb-4">
<h1>{% block logo_login %}Tabler{% endblock %}</h1>
</div>
Expand Down

0 comments on commit 0061d82

Please sign in to comment.