form: add spacing between paragraphs

This commit is contained in:
Pierre de La Morinerie 2018-07-09 18:16:59 +02:00
parent 9e08ac9da2
commit adab8e44ff

View file

@ -25,6 +25,10 @@
@include notice-text-style; @include notice-text-style;
display: block; display: block;
margin-top: $default-spacer; margin-top: $default-spacer;
p {
margin-bottom: $default-spacer;
}
} }
&.required { &.required {
@ -249,7 +253,10 @@
.explication { .explication {
background-color: $light-grey; background-color: $light-grey;
padding: $default-padding; padding: $default-padding;
margin-bottom: 2 * $default-padding;
p:not(:last-child) {
margin-bottom: $default-padding;
}
} }
.send-wrapper { .send-wrapper {