From efcb0eaec4d6131a24f04447273d262346e2e2a0 Mon Sep 17 00:00:00 2001 From: Deimos Date: Wed, 10 Oct 2018 14:17:10 -0600 Subject: [PATCH] Change list-style-position back to "outside" Using "inside" has some weird wrapping issues that I forgot about, this should be better (but needs a bigger margin). --- tildes/scss/_placeholders.scss | 5 ++--- tildes/scss/modules/_nav.scss | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tildes/scss/_placeholders.scss b/tildes/scss/_placeholders.scss index bb67fbb..e28de29 100644 --- a/tildes/scss/_placeholders.scss +++ b/tildes/scss/_placeholders.scss @@ -4,12 +4,11 @@ // sets up (nested) lists specifically for text content %lists-text { ol, ul { - list-style-position: inside; - margin: 0 0 0.4rem 1rem; + margin: 0 0 0.4rem 2rem; li { margin-top: 0.2rem; - max-width: $paragraph-max-width - 1rem; + max-width: $paragraph-max-width - 2rem; // subtract left margin } &:last-child { diff --git a/tildes/scss/modules/_nav.scss b/tildes/scss/modules/_nav.scss index d49f881..fb4f425 100644 --- a/tildes/scss/modules/_nav.scss +++ b/tildes/scss/modules/_nav.scss @@ -12,6 +12,7 @@ margin-left: 0; li { + margin-top: 0.2rem; font-size: 0.8rem; font-weight: normal; border-bottom: 0;