content bloc: fix margins and breakpoints

This commit is contained in:
2021-07-14 18:15:14 +02:00
parent 030e71d276
commit d35553a1e2
14 changed files with 34 additions and 29 deletions

View File

@@ -19,8 +19,10 @@
{% block title %}{{ 'Add a person'|trans }}{% endblock title %}
{% block content %}
<div class="col-12 mt-3" >
<div class="col-md-10 offset-md-1">
<div class="person-new col-12 my-5">
<div class="row justify-content-center">
<div class="col-md-10 col-xxl">
{{ form_start(form) }}
<h1>{{ 'Add a person'|trans }}</h1>
@@ -47,5 +49,7 @@
{{ form_end(form) }}
</div>
</div>
</div>
{% endblock content %}