Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/quick fix #130

Merged
merged 6 commits into from
Sep 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions packages/ui/src/widgets/Leaderboard/TopWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,12 @@ const DaysLeft = styled.div(({ tournament }: { tournament?: boolean }) => ({
fontSize: 14,
display: 'none',
textAlign: 'center',
position: 'absolute',
left: '-30px',
top: '-80px',
minWidth: 168,
textTransform: 'uppercase',
...(tournament
? {
padding: '7px 15px',
position: 'relative',
display: 'block',
top: '0',
left: '0',
width: '151px',
margin: '4px auto 14px auto',
}
Expand Down Expand Up @@ -258,7 +252,7 @@ export const TopWidget = ({
</Typography>
)}
{address && (
<Row columns={'130px 130px'} columnGap={6} justify="center">
<Row columns={'auto 130px'} columnGap={6} justify="center">
<PlayAgain onClick={onPlayAgain} tournament={hasActiveTournament}>
<div style={{ display: 'flex', alignItems: 'center' }}>
<RepeatIcon />
Expand Down
Loading