bug fixes, new fonts, etc
This commit is contained in:
@@ -4,7 +4,8 @@ import {
|
||||
Group,
|
||||
Box,
|
||||
Stack,
|
||||
Divider
|
||||
Divider,
|
||||
Title
|
||||
} from "@mantine/core";
|
||||
import { useTeam } from "../queries";
|
||||
import Avatar from "@/components/avatar";
|
||||
@@ -56,9 +57,9 @@ const TeamCard = ({ teamId }: TeamCardProps) => {
|
||||
}}
|
||||
/>
|
||||
<Box style={{ flex: 1, minWidth: 0 }}>
|
||||
<Text size="md" fw={600} lineClamp={1} mb={2}>
|
||||
<Title order={5} lineClamp={1}>
|
||||
{team.name}
|
||||
</Text>
|
||||
</Title>
|
||||
<Text size="sm" c="dimmed" lineClamp={1}>
|
||||
{team.players?.map(p => `${p.first_name} ${p.last_name}`).join(', ')}
|
||||
</Text>
|
||||
|
||||
Reference in New Issue
Block a user