From 21d0881742b47af0a77cbf44b0466a348849f7b5 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 22 Dec 2017 17:34:39 +0000 Subject: [PATCH] Use dashed style bullets on ToC --- static/src/scss/style.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/static/src/scss/style.scss b/static/src/scss/style.scss index 2d7491f..f66c3a8 100644 --- a/static/src/scss/style.scss +++ b/static/src/scss/style.scss @@ -153,9 +153,22 @@ footer { #TableOfContents { font-size: $font-size-base; + ul { + list-style-type: none; + } + & > ul { margin-bottom: 0; padding-left: $spacer; + + li { + text-indent: -5px; + + &::before { + margin-right: 5px; + content: "-"; + } + } } }