From 14d2d8cb28b3016bc74b7ee0b7d7f67102bd9993 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Sun, 5 Jul 2026 19:54:34 -0700 Subject: [PATCH] fix spacing between lists and paragraphs --- web/src/index.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/web/src/index.css b/web/src/index.css index e7e1f11..55b0e33 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -286,6 +286,14 @@ textarea { word-break: break-word; } +.md-content > :first-child { + margin-top: 0; +} + +.md-content > :last-child { + margin-bottom: 0; +} + .md-table-scroll { max-width: 100%; margin: 0.35rem 0 1rem; @@ -384,7 +392,8 @@ textarea { .md-content ul, .md-content ol { - margin-top: 0.65rem; + margin-top: 0.85rem; + margin-bottom: 0.85rem; margin-left: 0; padding-left: 0; list-style: none;