Skip to content

Commit

Permalink
KYC Referral Count
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbayly committed Feb 29, 2024
1 parent 9d29fd6 commit 81abb84
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Challenges/Challenges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,10 @@ const Leaderboard = (props: { userInfo?: IUserInfo }) => {
if (!userLeaderboard) return <DefaultLoading />;

return (
<div className={styles.baseCard} style={{ marginTop: 32, display: 'flex', flexDirection: 'column', gap: 16 }}>
<div
className={styles.baseCard}
style={{ marginTop: 32, display: 'flex', flexDirection: 'column', gap: 16, width: '100%' }}
>
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
<Typography variant="h6">The Leaderboard</Typography>
<Typography variant="large">
Expand All @@ -382,7 +385,7 @@ const Leaderboard = (props: { userInfo?: IUserInfo }) => {
<Typography>Name</Typography>
</div>
<div style={{ flex: 1 }}>
<Typography>Referral Multiplier</Typography>
<Typography>Verified Referral Multiplier</Typography>
</div>
<div style={{ flex: 1 }}>
<Typography>Total Score</Typography>
Expand Down

0 comments on commit 81abb84

Please sign in to comment.