Skip to content

Commit 3779c6c

Browse files
committed
ui: bigger stats card
1 parent f249d36 commit 3779c6c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/ui/app/pages/Dashboard.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ export function StatsCard({ title, value, Icon }) {
1111
return (
1212
<Paper withBorder p="md" radius="md" key={title}>
1313
<Group justify="space-between">
14-
<Text size="xs" c="dimmed">
14+
<Text size="md" c="dimmed">
1515
{title}
1616
</Text>
17-
<Icon size="1.4rem" stroke={1.5} />
17+
<Icon size="2rem" stroke={1.5} />
1818
</Group>
1919

2020
<Group align="flex-end" gap="xs" mt={25}>
21-
<Text>{value}</Text>
21+
<Text size="xl" fw={700}>
22+
{value}
23+
</Text>
2224
</Group>
2325
</Paper>
2426
);

0 commit comments

Comments
 (0)