Enforce consistent vertical spacing between paragraphs in endpoint definitions (#1969)

Use `p` elements to separate paragraphs instead of `br` and enforce single paragraphs to be wrapped in `p` for consistency.

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
This commit is contained in:
Kévin Commaille 2024-10-29 16:22:15 +01:00 committed by GitHub
parent 32f41f88bc
commit 1f5f2c4d83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 37 additions and 13 deletions

View file

@ -387,6 +387,11 @@ footer {
border-top: 1px $table-border-color solid;
}
td > p:last-child {
// Avoid unnecessary space at the bottom of the cells.
margin-bottom: 0;
}
&.object-table, &.response-table, &.content-type-table {
border: 1px $table-border-color solid;