From 6f52ffd3b1e6b6059763c6946faca5370e553dd2 Mon Sep 17 00:00:00 2001 From: Deimos Date: Fri, 17 May 2019 22:51:59 -0600 Subject: [PATCH] Increase left margin of top-level lists This was too small - lists weren't really indented so they were a little weird to read. The smaller margin for the nested ones is good though, so this will leave that. --- tildes/scss/_placeholders.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tildes/scss/_placeholders.scss b/tildes/scss/_placeholders.scss index 84f9c9f..d5b8285 100644 --- a/tildes/scss/_placeholders.scss +++ b/tildes/scss/_placeholders.scss @@ -17,11 +17,16 @@ } ol, ul { - margin: 0 0 0.4rem 1rem; + $list-left-margin: 2rem; + margin: 0 0 0.4rem $list-left-margin; li { margin-top: 0.2rem; - max-width: $paragraph-max-width - 1rem; // subtract left margin + max-width: $paragraph-max-width - $list-left-margin; + } + + ol, ul { + margin-left: 1rem; } &:last-child {