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;
display: block;
margin-top: $default-spacer;
p {
margin-bottom: $default-spacer;
}
}
&.required {
@ -249,7 +253,10 @@
.explication {
background-color: $light-grey;
padding: $default-padding;
margin-bottom: 2 * $default-padding;
p:not(:last-child) {
margin-bottom: $default-padding;
}
}
.send-wrapper {