Skip to content

Commit

Permalink
Small style tweaks.
Browse files Browse the repository at this point in the history
Signed-off-by: antonnell <[email protected]>
  • Loading branch information
antonnell committed Oct 27, 2021
1 parent 435b2e5 commit 5208a51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/ffClaim/ffClaim.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default function ffClaim() {
<div>
{ BigNumber(rewards && rewards.veIBFFDistribution ? rewards.veIBFFDistribution.earned : 0).gt(0) &&
(
loading ? <Typography>Claiming</Typography> : <Typography>Claim Now</Typography>
loading ? <Typography className={classes.sub}>Claiming</Typography> : <Typography className={classes.sub}>Claim Now</Typography>
)
}
{ !BigNumber(rewards && rewards.veIBFFDistribution ? rewards.veIBFFDistribution.earned : 0).gt(0) &&
Expand Down
2 changes: 1 addition & 1 deletion components/ffClaimDistirbution/ffClaimDistirbution.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function ffClaimDistirbution() {
<div>
{ BigNumber(rewards && rewards.feeDistribution ? rewards.feeDistribution.earned : 0).gt(0) &&
(
loading ? <Typography>Claiming</Typography> : <Typography>Claim Now</Typography>
loading ? <Typography className={classes.sub}>Claiming</Typography> : <Typography className={classes.sub}>Claim Now</Typography>
)
}
{ !BigNumber(rewards && rewards.feeDistribution ? rewards.feeDistribution.earned : 0).gt(0) &&
Expand Down

0 comments on commit 5208a51

Please sign in to comment.