From 020a8c43362e8af92a2ffd68f94d84bdbd2a246a Mon Sep 17 00:00:00 2001 From: Martijn Cuppens Date: Sun, 29 Nov 2020 13:43:18 +0100 Subject: [PATCH] Make use of Sass nesting & remove redundant class --- scss/_list-group.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scss/_list-group.scss b/scss/_list-group.scss index ee5a67516..660bce0c9 100644 --- a/scss/_list-group.scss +++ b/scss/_list-group.scss @@ -83,12 +83,12 @@ border-top-width: $list-group-border-width; } } -} -// Explicit override to allow numbers to show when using an
    -ol.list-group > .list-group-item { - display: list-item; - list-style-position: inside; + // Explicit override to allow numbers to show when using an
      + ol > & { + display: list-item; + list-style-position: inside; + } }