Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Chriscbr committed Aug 11, 2023
1 parent 197b8ed commit 81f7aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/views/LeaderboardView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ export const LeaderboardView = () => {
.sort((a, b) => b.score - a.score)
.map((item, index) => (
<tr key={item.name}>
<td className="whitespace-nowrap py-4 pl-4 pr-3 text-lg font-medium text-slate-900 sm:pl-0">
<td className="whitespace-nowrap py-4 pl-4 pr-3 text-xl text-slate-900 sm:pl-0">
{item.name}
</td>
<td className="whitespace-nowrap px-3 py-4 text-xl text-slate-500 ">
<div className="flex justify-end gap-x-2 leading-7">
<div className="text-xl">
<div>
{index === 0 && "🥇"}
{index === 1 && "🥈"}
{index === 2 && "🥉"}
Expand Down

0 comments on commit 81f7aa9

Please sign in to comment.