update card
All checks were successful
deploy / deploy (push) Successful in 1m59s

This commit is contained in:
Lee
2023-10-30 16:53:55 +00:00
parent 70907395bb
commit a1af814254
13 changed files with 157 additions and 41 deletions

View File

@ -99,7 +99,7 @@ export default function Scores({ playerData, page, sortType }: ScoresProps) {
return (
<Card className="mt-2 w-full items-center md:flex-col">
{/* Sort */}
<div className="m-2 w-full text-sm">
<div className="m-4 w-full text-sm">
<div className="flex justify-center gap-2">
{Object.values(SortTypes).map((sortType) => {
return (
@ -128,7 +128,7 @@ export default function Scores({ playerData, page, sortType }: ScoresProps) {
<Spinner />
</div>
) : (
<div className="grid grid-cols-1 divide-y divide-gray-500">
<div className="grid grid-cols-1 divide-y divide-gray-800">
{!scores.loading && scores.scores.length == 0 ? (
<p className="text-red-400">{errorMessage}</p>
) : (
@ -152,7 +152,7 @@ export default function Scores({ playerData, page, sortType }: ScoresProps) {
{/* Pagination */}
<div>
<div className="p-3">
<div className="pt-3">
<Pagination
currentPage={scores.page}
totalPages={scores.totalPages}