فهرست منبع

relocate style

kosei-n 2 سال پیش
والد
کامیت
f831132505

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

@@ -11,4 +11,17 @@
     --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);
   }
 
-  .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) {
@@ -17,8 +17,8 @@
     --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);
+  // }
 
 }

+ 0 - 4
packages/core/scss/bootstrap/theming/_list-group.scss

@@ -1,8 +1,4 @@
 .list-group {
   --#{$prefix}list-group-active-bg: #{$list-group-active-bg};
   --#{$prefix}list-group-active-border-color: #{$list-group-active-border-color};
-
-  // .list-group-item {
-  //   background-color: var(--grw-primary-100)
-  // }
 }