From c18a1fe6b0d282adfd4e1ebdf464569a5421e499 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 23 Sep 2025 23:34:27 -0400 Subject: [PATCH] fix(style): alternate fix for list-group styling --- _sass/styles.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/_sass/styles.scss b/_sass/styles.scss index c8a6d69f..36b12ee6 100644 --- a/_sass/styles.scss +++ b/_sass/styles.scss @@ -1,9 +1,5 @@ @import "admonition"; -:root { - --bs-list-group-bg: #var(--navbar-col); -} - body { font-family: 'Open Sans', sans-serif; } @@ -163,3 +159,8 @@ table tr:nth-child(2n) { .list-group-item.bg-dark a:hover { text-decoration: underline; } + +/* list groups */ +.list-group { + --bs-list-group-bg: var(--navbar-col); +}