Skip to content

Commit efe6eb5

Browse files
authored
fix(style): restore paragraph spacing in parameter and response descriptions (#10514)
1 parent 059cfe3 commit efe6eb5

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/style/_table.scss

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ table {
9090
border-width: 1px;
9191
}
9292

93-
.markdown,
94-
.renderedMarkdown {
95-
p {
93+
.markdown:first-child,
94+
.renderedMarkdown:first-child {
95+
p:first-child {
9696
margin: 0;
9797
}
9898
}
@@ -170,9 +170,12 @@ table {
170170

171171
.markdown,
172172
.renderedMarkdown {
173-
p {
173+
p:first-child {
174174
margin: 0;
175175
}
176+
p:last-child {
177+
margin-bottom: 0;
178+
}
176179
}
177180
}
178181

0 commit comments

Comments
 (0)