style: Increase messagebox inter-paragraph spacing

The default is too tight for easily distinguishing paragraphs. This
change increases it slightly, while keeping the last paragraph's
margin at the original value.
This commit is contained in:
Kamal Marhubi 2017-03-30 16:32:50 -04:00 committed by Tim Abbott
parent 8f8efb4664
commit 8d787ed887
1 changed files with 5 additions and 1 deletions

View File

@ -1343,7 +1343,11 @@ blockquote p {
}
.messagebox p {
margin: 3px 0px 3px 0px;
margin: 3px 0px 10px 0px;
}
.messagebox p:last-of-type {
margin-bottom: 3px;
}
.messagebox blockquote {