From 50f7a3b76d0c8e3a1702f543d5cba8d213044fc1 Mon Sep 17 00:00:00 2001 From: "plebeius.eth" Date: Sun, 28 Apr 2024 12:54:58 +0200 Subject: [PATCH] style(markdown): apply list-style-position inside, lists shouldn't be indented by default in an imageboard ui --- src/components/markdown/markdown.module.css | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/markdown/markdown.module.css b/src/components/markdown/markdown.module.css index fbd6783e..b894ce63 100644 --- a/src/components/markdown/markdown.module.css +++ b/src/components/markdown/markdown.module.css @@ -8,12 +8,8 @@ text-decoration: var(--post-content-link-text-decoration-hover); } -.markdown ol { - padding-left: 15px; -} - -.markdown ul { - padding-left: 40px; +.markdown li { + list-style-position: inside; } .hrWrapper {