From ac2d5dad98630ddc3609cf64e76a57b80d7cc25e Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sun, 21 Jun 2026 17:01:00 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Adjust=20list=20styles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/base/typography.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/styles/base/typography.css b/styles/base/typography.css index 4f118b2..2e0f9b4 100644 --- a/styles/base/typography.css +++ b/styles/base/typography.css @@ -140,9 +140,17 @@ p { } -ul { list-style-type: disc; } +ul { + list-style-type: disc; + list-style-position: inside; + padding: 0 1rem; +} -ol { list-style-type: decimal; } +ol { + list-style-type: decimal; + list-style-position: inside; + padding: 0 1rem; +} li ul, li ol { margin: 0 1rem; }