12363 update paragraph spacing on journal table (#12435)

* 12363 update paragraph spacing on journal table

* 12363 make css rule generic

* 12363 change p tag to only effect last-child

* 12363 change p table spacing to .5em

* 12363 move comment
This commit is contained in:
Arthur Hanson 2023-05-04 11:05:32 -07:00 committed by GitHub
parent 46914d9479
commit 683ef30af4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -231,6 +231,10 @@ table {
p {
// Remove spacing from paragraph elements within tables.
margin-bottom: 0.5em;
}
p:last-child {
margin-bottom: 0;
}
}