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;
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue