Skip to content

Commit

Permalink
added warning message to parlay leaderboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Gorshtak committed Dec 1, 2022
1 parent d56aa38 commit 5f7929d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,7 @@
"title": "Parlay Incentives Leaderboard",
"description": "A total of 10,000 OP will be distributed to the best parlays of the month. The tickets will be ranked based on the highest odds, followed by volume in case of a tie.",
"distribution-note": "Rewards will be distributed to the top 20 parlays for the month of December!",
"no-parlays": "No winning parlays registered in the period yet."
"no-parlays": "No winning parlays registered in the period yet.",
"warning": "*Overtime team holds the right to disqualify wallets we suspect of gaming the system."
}
}
13 changes: 13 additions & 0 deletions src/pages/ParlayLeaderboard/ParlayLeaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const ParlayLeaderboard: React.FC = () => {
<Title>{t('parlay-leaderboard.title')}</Title>
<Description>{t('parlay-leaderboard.description')}</Description>
<Description>{t('parlay-leaderboard.distribution-note')}</Description>
<Warning>{t('parlay-leaderboard.warning')}</Warning>
</TextContainer>

<Table
Expand Down Expand Up @@ -257,6 +258,18 @@ const Description = styled.p`
margin-bottom: 10px;
`;

const Warning = styled.p`
font-family: 'Roboto';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 150%;
text-align: justify;
letter-spacing: 0.025em;
color: #ffcc00;
margin-bottom: 10px;
`;

const TableText = styled.p`
font-family: 'Roboto';
font-style: normal;
Expand Down

0 comments on commit 5f7929d

Please sign in to comment.