Skip to content

Commit

Permalink
Merge pull request #92 from sfaber34/patch-1
Browse files Browse the repository at this point in the history
Update App.jsx to make staking success div text readable in dark mode
  • Loading branch information
codenamejason authored Apr 3, 2022
2 parents 16c12cd + e7dc873 commit 28f5e48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-app/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ function App(props) {
let completeDisplay = "";
if (complete) {
completeDisplay = (
<div style={{ padding: 64, backgroundColor: "#eeffef", fontWeight: "bolder" }}>
πŸš€ πŸŽ– πŸ‘©β€πŸš€ - Staking App triggered `ExampleExternalContract` -- πŸŽ‰ 🍾 🎊
<div style={{ padding: 64, backgroundColor: "#eeffef", fontWeight: "bolder", color: "rgba(0, 0, 0, 0.85)" }}>
πŸš€ πŸŽ– πŸ‘©β€πŸš€ -- Staking App triggered `ExampleExternalContract` -- πŸŽ‰ 🍾 🎊
<Balance balance={exampleExternalContractBalance} fontSize={64} /> ETH staked!
</div>
);
Expand Down

0 comments on commit 28f5e48

Please sign in to comment.