form: add spacing between paragraphs
This commit is contained in:
parent
9e08ac9da2
commit
adab8e44ff
1 changed files with 8 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue