Skip to content

Commit

Permalink
Merge pull request #1409 from sul-dlss/paragraph-margins
Browse files Browse the repository at this point in the history
Only add margin to consecutive paragraphs
  • Loading branch information
jcoyne authored Sep 16, 2024
2 parents 50897bb + 93bdcfb commit 95e7c58
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/assets/stylesheets/earthworks.css
Original file line number Diff line number Diff line change
Expand Up @@ -365,3 +365,12 @@ body {
#main-container {
flex: 1;
}

/* Add margin for consecutive paragraphs in item descriptions */
.document-metadata p {
margin-bottom: 0;
}

.document-metadata p + p {
margin-top: 1rem;
}

0 comments on commit 95e7c58

Please sign in to comment.