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
3 changes: 2 additions & 1 deletion frontend/components/leaderboard/LeaderboardTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function LeaderboardTable({
const isUserInTop = currentUserRank > 0 && currentUserRank <= 10;

return (
<div className="w-full max-w-4xl flex flex-col gap-4">
<div className="w-full flex flex-col gap-4">
<div className="bg-white dark:bg-white/5 backdrop-blur-md rounded-2xl border border-slate-200 dark:border-white/10 overflow-hidden shadow-lg dark:shadow-2xl">
<div className="w-full">
<table className="w-full text-left border-separate border-spacing-0 table-fixed">
Expand Down Expand Up @@ -107,6 +107,7 @@ function TableRow({
const leftBorderClass = isCurrentUser
? 'border-l-[1px] sm:border-l-[1px] border-l-transparent'
: 'border-l-[1px] sm:border-l-[1px] border-l-transparent';

const rightBorderClass = isCurrentUser
? 'border-r-[1px] sm:border-r-[1px] border-r-transparent'
: 'border-r-[1px] sm:border-r-[1px] border-r-transparent';
Expand Down