1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

shuffle copy around

This commit is contained in:
Matthias Kretschmann 2019-02-28 13:39:35 -03:00
parent 94201d2021
commit f21706bcf3
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 9 additions and 9 deletions

View File

@ -2,10 +2,11 @@
.action {
text-align: center;
margin-top: $spacer * $line-height;
margin-top: $spacer * 2;
p {
margin-bottom: $spacer;
margin-top: $spacer;
color: $brand-grey-light;
}
}

View File

@ -41,17 +41,11 @@ class Faucet extends PureComponent<{}, FaucetState> {
return (
<Route
title="Faucet"
description="Shower yourself with some Ether."
description="Shower yourself with some Ether for the Ocean POA network."
>
<Web3message />
<div className={styles.action}>
<p>
Click the button below to request Ether for the Ocean
POA network.
<br /> You can only request Ether once every 24 hours
for your address.
</p>
<User.Consumer>
{states =>
this.state.isLoading ? (
@ -74,6 +68,11 @@ class Faucet extends PureComponent<{}, FaucetState> {
)
}
</User.Consumer>
<p>
You can only request Ether once every 24 hours for your
address.
</p>
</div>
</Route>
)