Merge pull request #2234 from betagouv/form-paragraph-spacing

Sépare les paragraphes dans les descriptions des champs
This commit is contained in:
gregoirenovel 2018-07-09 18:28:41 +02:00 committed by GitHub
commit 8e833ba139
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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