Yuki Takei 2 лет назад
Родитель
Сommit
142883b1e5

+ 4 - 4
apps/app/src/components/Sidebar/PageTree/Item.module.scss

@@ -7,8 +7,8 @@
     .list-group-item-action {
       .btn-page-item-control {
         --bs-btn-bg: transparent;
-        --bs-btn-hover-bg: var(--grw-primary-300);
-        --bs-btn-active-bg: var(--grw-primary-400);
+        --bs-btn-hover-bg: var(--grw-primary-200);
+        --bs-btn-active-bg: var(--grw-primary-300);
       }
     }
   }
@@ -18,8 +18,8 @@
     .list-group-item-action {
       .btn-page-item-control {
         --bs-btn-bg: transparent;
-        --bs-btn-hover-bg: var(--grw-primary-700);
-        --bs-btn-active-bg: var(--grw-primary-800);
+        --bs-btn-hover-bg: var(--grw-primary-600);
+        --bs-btn-active-bg: var(--grw-primary-700);
       }
     }
   }

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

@@ -2,13 +2,13 @@
 
 @include bs.color-mode(light) {
   .list-group-item-action {
-    --bs-list-group-action-hover-bg: var(--grw-primary-200);
-    --bs-list-group-action-active-bg: var(--grw-primary-400);
+    --bs-list-group-action-hover-bg: var(--grw-primary-100);
+    --bs-list-group-action-active-bg: var(--grw-primary-200);
   }
 }
 @include bs.color-mode(dark) {
   .list-group-item-action {
     --bs-list-group-action-hover-bg: var(--grw-primary-800);
-    --bs-list-group-action-active-bg: var(--grw-primary-800);
+    --bs-list-group-action-active-bg: var(--grw-primary-700);
   }
 }