Ver código fonte

Change submit button color on focus

Gaël Métais 10 anos atrás
pai
commit
88bb2f91a5
2 arquivos alterados com 7 adições e 0 exclusões
  1. 3 0
      front/src/css/index.css
  2. 4 0
      front/src/less/index.less

+ 3 - 0
front/src/css/index.css

@@ -16,6 +16,9 @@
   background: #e74c3c;
   color: #fff;
 }
+.launchBtn:focus {
+  background: #ffa319;
+}
 .launchBtn.disabled {
   background: #deaca6;
 }

+ 4 - 0
front/src/less/index.less

@@ -18,9 +18,13 @@
 .launchBtn {
     background: #e74c3c;
     color: #fff;
+    &:focus {
+        background: #ffa319;
+    }
     &.disabled {
         background: #deaca6;
     }
+    
 }
 
 .features {