fix tournament card size

This commit is contained in:
yohlo
2025-10-04 22:42:00 -05:00
parent 95a50ee7a7
commit d18d148d32
3 changed files with 7 additions and 137 deletions

View File

@@ -7,17 +7,7 @@ interface PodiumProps {
}
export const Podium = ({ tournament }: PodiumProps) => {
if (!tournament.first_place) {
return (
<Box p="md">
<Center>
<Text c="dimmed" size="sm">
Podium will appear here when the tournament is over
</Text>
</Center>
</Box>
);
}
if (!tournament.first_place) return;
return (
<Stack gap="xs" px="md">