Преглед изворни кода

Change the hover style of 'wire' buttons.

Sergiu Miclea пре 8 година
родитељ
комит
d97fc96fd3
1 измењених фајлова са 10 додато и 1 уклоњено
  1. 10 1
      src/components/App/App.scss

+ 10 - 1
src/components/App/App.scss

@@ -155,13 +155,22 @@ button {
     background-color: #FFF;
     border: 1px solid $blue;
     &:hover {
-      opacity: 0.75;
+      color: white;
+      background: $blue;
     }
     &:global(.gray) {
+      &:hover {
+        color: white;
+        background: $gray;
+      }
       border-color: $gray;
       color: $black;
     }
     &:global(.red) {
+      &:hover {
+        color: white;
+        background: $red;
+      }
       border-color: $red;
       color: $red;
     }