diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-31 19:35:24 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-31 19:35:24 +0900 |
| commit | 266e3037a4ca24129bb30c818ec2959468585029 (patch) | |
| tree | 2f6e6188fe9f16a0d1c8aceab3854e837b9cf3e3 | |
| parent | 3ea0b8e93ea2735feacc8b7253bc0b32a5aa2bb6 (diff) | |
| download | iosdc-japan-2025-albatross-266e3037a4ca24129bb30c818ec2959468585029.tar.gz iosdc-japan-2025-albatross-266e3037a4ca24129bb30c818ec2959468585029.tar.zst iosdc-japan-2025-albatross-266e3037a4ca24129bb30c818ec2959468585029.zip | |
fix(frontend): make ranking table scrollable
| -rw-r--r-- | frontend/app/components/Gaming/RankingTable.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/Gaming/RankingTable.tsx b/frontend/app/components/Gaming/RankingTable.tsx index 38d5200..3368f60 100644 --- a/frontend/app/components/Gaming/RankingTable.tsx +++ b/frontend/app/components/Gaming/RankingTable.tsx @@ -33,7 +33,7 @@ export default function RankingTable() { const ranking = useAtomValue(rankingAtom); return ( - <div className="overflow-hidden border-2 border-blue-600 rounded-xl"> + <div className="overflow-x-auto border-2 border-blue-600 rounded-xl"> <table className="min-w-full divide-y divide-gray-400 border-collapse"> <thead className="bg-gray-50"> <tr> |
