Recursively indent ol and ul elements

This commit is contained in:
Eryn Wells 2022-10-14 14:33:22 -07:00
parent 0a1af8dc23
commit d37069cb4b

View file

@ -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;