kosei-n 2 лет назад
Родитель
Сommit
9a1a48afdc

+ 0 - 13
apps/app/src/components/Sidebar/SidebarContents.module.scss

@@ -11,17 +11,4 @@
     --bs-list-group-bg: transparent;
     --bs-list-group-bg: transparent;
   }
   }
 
 
-
-  @include bs.color-mode(light) {
-    .list-group-item {
-      --bs-list-group-active-bg: var(--grw-primary-100);
-
-    }
-  }
-
-  @include bs.color-mode(dark) {
-    .list-group-item {
-      --bs-list-group-active-bg: var(--grw-primary-800);
-    }
-  }
 }
 }

+ 6 - 6
apps/app/src/styles/molecules/_list-group-item.scss

@@ -6,9 +6,9 @@
     --bs-list-group-action-active-bg: var(--grw-primary-200);
     --bs-list-group-action-active-bg: var(--grw-primary-200);
   }
   }
 
 
-  // .list-group-item {
-  //   --bs-list-group-active-bg: var(--grw-primary-100);
-  // }
+  .list-group-item {
+    --bs-list-group-active-bg: var(--grw-primary-100);
+  }
 }
 }
 
 
 @include bs.color-mode(dark) {
 @include bs.color-mode(dark) {
@@ -17,8 +17,8 @@
     --bs-list-group-action-active-bg: var(--grw-primary-700);
     --bs-list-group-action-active-bg: var(--grw-primary-700);
   }
   }
 
 
-  // .list-group-item {
-  //   --bs-list-group-active-bg: var(--grw-primary-800);
-  // }
+  .list-group-item {
+    --bs-list-group-active-bg: var(--grw-primary-800);
+  }
 
 
 }
 }