This commit is contained in:
@ -111,7 +111,7 @@ export default function PlayerInfo({ playerData }: PlayerInfoProps) {
|
||||
const scoreStats = playerData.scoreStats;
|
||||
|
||||
return (
|
||||
<Card className="mt-2">
|
||||
<Card outerClassName="mt-2" className="mt-2">
|
||||
{/* Player Info */}
|
||||
<div className="flex flex-col items-center gap-3 md:flex-row md:items-start">
|
||||
<div className="min-w-fit">
|
||||
|
@ -67,7 +67,7 @@ export default function PlayerPage({ id, sort, page }: PlayerPageProps) {
|
||||
return (
|
||||
<main>
|
||||
<Container>
|
||||
<Card className="mt-2">
|
||||
<Card outerClassName="mt-2" className="mt-2">
|
||||
<div className="p-3 text-center">
|
||||
<div role="status">
|
||||
<div className="flex flex-col items-center justify-center gap-2">
|
||||
@ -90,7 +90,7 @@ export default function PlayerPage({ id, sort, page }: PlayerPageProps) {
|
||||
<Container>
|
||||
<PlayerInfo playerData={playerData} />
|
||||
{/* Chart */}
|
||||
<Card className="mt-2">
|
||||
<Card outerClassName="mt-2">
|
||||
{/* Badges */}
|
||||
<div
|
||||
className={clsx(
|
||||
|
@ -97,9 +97,9 @@ export default function Scores({ playerData, page, sortType }: ScoresProps) {
|
||||
}
|
||||
|
||||
return (
|
||||
<Card className="mt-2 w-full items-center md:flex-col">
|
||||
<Card outerClassName="mt-2" className="w-full items-center md:flex-col">
|
||||
{/* Sort */}
|
||||
<div className="m-4 w-full text-sm">
|
||||
<div className="mb-2 mt-1 w-full text-sm">
|
||||
<div className="flex justify-center gap-2">
|
||||
{Object.values(SortTypes).map((sortType) => {
|
||||
return (
|
||||
|
Reference in New Issue
Block a user