Parcourir la source

ux: minor tweak to grid resize handle color

Torkel Ödegaard il y a 7 ans
Parent
commit
6bbd87dd9c
1 fichiers modifiés avec 9 ajouts et 2 suppressions
  1. 9 2
      public/sass/components/_dashboard_grid.scss

+ 9 - 2
public/sass/components/_dashboard_grid.scss

@@ -41,8 +41,15 @@
 
 
 .theme-dark {
 .theme-dark {
   .react-grid-item > .react-resizable-handle::after {
   .react-grid-item > .react-resizable-handle::after {
-    border-right: 2px solid rgba(255, 255, 255, 0.4);
-    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
+    border-right: 2px solid $gray-4;
+    border-bottom: 2px solid $gray-4;
+  }
+}
+
+.theme-light {
+  .react-grid-item > .react-resizable-handle::after {
+    border-right: 2px solid $gray-3;
+    border-bottom: 2px solid $gray-3;
   }
   }
 }
 }