From 9e5e16084577a6d3d7f9951c7f3b19e2dfb5eb37 Mon Sep 17 00:00:00 2001 From: Thomas Flummer Date: Sun, 22 May 2022 11:31:22 +0200 Subject: [PATCH] Fix for issue #3637 Added padding on nested ul, to compensate for the negative margin on the containing li Signed-off-by: Thomas Flummer --- src/css/markdown.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/css/markdown.scss b/src/css/markdown.scss index c9849a12a..c62b45420 100644 --- a/src/css/markdown.scss +++ b/src/css/markdown.scss @@ -25,6 +25,10 @@ ul { .task-list-item { margin-left: -20px; list-style-type: none; + + ul { + padding-left: 20px; + } } }