From 11a7d5ed2e34df2dde414c53ad5b154c3569d0b5 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Mon, 22 Dec 2025 15:00:30 -1000 Subject: [PATCH] css: fix unwanted line break in loose lists --- out/css/site.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/out/css/site.css b/out/css/site.css index 6fa0617..a5272f7 100644 --- a/out/css/site.css +++ b/out/css/site.css @@ -30,6 +30,10 @@ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { margin:0; } +ul { + list-style-position: outside; +} + li { margin-bottom:0; }