From d37069cb4b6bade5320fcdb3958a9a80e27758d4 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 14 Oct 2022 14:33:22 -0700 Subject: [PATCH] Recursively indent ol and ul elements --- static/styles/root.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/styles/root.css b/static/styles/root.css index 8bb08e6..3f52e78 100644 --- a/static/styles/root.css +++ b/static/styles/root.css @@ -401,6 +401,13 @@ p { p { margin-block-end: var(--body-item-spacing); } p:last-child { margin-block-end: 0; } +ul ul, +ul ol, +ol ul, +ol ol { + margin-inline-start: var(--body-item-spacing); +} + .post-list { list-style: none; margin: 0;