person templates responsive breakpoints in content

This commit is contained in:
2021-07-13 12:38:02 +02:00
parent 15f439b43d
commit bdf0ec63d2
3 changed files with 14 additions and 8 deletions

View File

@@ -19,8 +19,8 @@
{% block title %}{{ 'Add a person'|trans }}{% endblock title %}
{% block content %}
<div class="col-12 parent" >
<div class="col-md-10 offset-md-1 parent">
<div class="col-12 mt-3" >
<div class="col-md-10 offset-md-1">
{{ form_start(form) }}
<h1>{{ 'Add a person'|trans }}</h1>
@@ -40,9 +40,11 @@
{{ form_row(form.creation_date, { 'label' : 'Creation date'|trans }) }}
{{ form_rest(form) }}
<button class="btn btn-chill-green" type="submit" alt="add a person"><i class="fa fa-plus"></i> {{ 'Add the person'|trans }}</button>
<button class="btn btn-create" type="submit" alt="add a person">
{{ 'Add the person'|trans }}
</button>
{{ form_end(form) }}
</div>
</div>