From 47ddc6cc9d1b536a9953d23d6a5ff4eb9b9b4a49 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 4 Sep 2025 16:01:55 -0400 Subject: [PATCH] Fixes #20227: Fix paragraph spacing in rendered Markdown content --- netbox/project-static/dist/netbox.css | Bin 557097 -> 557095 bytes .../styles/custom/_markdown.scss | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/project-static/dist/netbox.css b/netbox/project-static/dist/netbox.css index 2768f77149d6b153152785489a7dd3a9b084302a..ef5904b0600d2549fc95221d496c916b4eb8a2bc 100644 GIT binary patch delta 36 scmZ44ptQU}siB3jg{g(Pg{6hHg{_5s3&+yx>CY3`#kTLQ=Ez|I0P}VY3jhEB delta 36 scmZ49ptQ0E^W@{M$EGbCj|G0PRN%Z~y=R diff --git a/netbox/project-static/styles/custom/_markdown.scss b/netbox/project-static/styles/custom/_markdown.scss index 75ada3bc6..28583f86e 100644 --- a/netbox/project-static/styles/custom/_markdown.scss +++ b/netbox/project-static/styles/custom/_markdown.scss @@ -30,7 +30,7 @@ // Remove the bottom margin of the last

elements in markdown .rendered-markdown { - p:last-of-type { + p:last-child { margin-bottom: 0; } }