Skip to content
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: 4 additions & 4 deletions src/components/leaderboard/leaderboard-row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ export default function LeaderboardRow({
/>
)}
{rank > 3 && (
<span className="text-3xl lg:text-5xl 2xl:text-7xl lg:mb-3 2xl:mb-3 h-22 w-22 2xl:w-35 2xl:h-35 flex items-center justify-center font-heading font-bold text-center text-black">
<span className="text-3xl lg:text-5xl 2xl:text-7xl h-22 w-22 2xl:w-35 2xl:h-35 flex items-center justify-center font-heading font-bold text-center text-black">
{rank}
</span>
)}
<h1 className="flex items-center justify-center">
<span className="text-xl lg:text-5xl 2xl:text-7xl lg:mb-3 2xl:mb-3 font-heading text-black font-bold">
<span className="text-xl lg:text-5xl 2xl:text-7xl font-heading text-black font-bold">
{teamName}
</span>
</h1>
Expand All @@ -95,7 +95,7 @@ export default function LeaderboardRow({
className="h-full w-20 lg:w-40 2xl:w-60 2xl:h-35 text-center text-black bg-contain bg-center bg-no-repeat flex items-center justify-center"
style={{ backgroundImage: `url('${timerBg}')` }}
>
<span className="text-xl lg:text-4xl 2xl:text-7xl lg:mb-3 2xl:mb-3 font-heading text-white font-bold">
<span className="text-xl lg:text-4xl 2xl:text-7xl font-heading text-white font-bold">
{score}
</span>
</h1>
Expand All @@ -105,7 +105,7 @@ export default function LeaderboardRow({
className="h-full w-20 lg:w-40 2xl:w-60 2xl:h-35 text-center text-black bg-contain bg-center bg-no-repeat flex items-center justify-center"
style={{ backgroundImage: `url('${timerBg}')` }}
>
<span className="text-xl lg:text-4xl 2xl:text-7xl lg:mb-3 2xl:mb-3 font-heading text-white font-bold">
<span className="text-xl lg:text-4xl 2xl:text-7xl font-heading text-white font-bold">
{score}
</span>
</h1>
Expand Down
Loading