Color fix

This commit is contained in:
Richard Ramos 2018-10-06 17:22:28 -04:00
parent 4c983876d3
commit 063fbc6418
2 changed files with 5 additions and 5 deletions

View File

@ -59,7 +59,7 @@
}
.yellow {
background: #ffff00;
background: #faff00;
color: #000000;
}
@ -69,7 +69,7 @@
}
.green {
background: #00ff00;
background: #00ff66;
color: #000000;
}
@ -84,7 +84,7 @@
.yellow .message-title {
background: #000000;
color: #ffff00;
color: #faff00;
}
.yellow .message-body {

View File

@ -140,11 +140,11 @@ class App extends React.Component {
messageBody = <p>Please ask a volunteer for help in person.</p>;
break;
case "yellow":
messageTitle = "You've already been funded";
messageTitle = "You've already been funded!";
messageBody = <p>We're redirecting you to ENS to register your own username! Ask a volunteer for help if you get lost.</p>
break;
case "green":
messageTitle = "Great success! Such future";
messageTitle = "Great success! Such future!";
messageBody = <p>We're redirecting you to ENS to register your own username! Ask a volunteer for help if you get lost.</p>
break;
}