diff options
| author | Mohamed Bassem <me@mbassem.com> | 2026-01-19 00:29:47 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2026-01-19 00:30:04 +0000 |
| commit | af3a587acaf641007c410e61579eeefe4836e8d7 (patch) | |
| tree | 3035bbf486cd56e29cc038ac49b54cc1c39b1c17 /apps/web/components/dashboard/lists/PendingInvitationsCard.tsx | |
| parent | a353d9801d8a92ccb333f6721931f720ce3defba (diff) | |
| download | karakeep-af3a587acaf641007c410e61579eeefe4836e8d7.tar.zst | |
fix(ui): Improve visual consistency in all lists and highlights page
Diffstat (limited to 'apps/web/components/dashboard/lists/PendingInvitationsCard.tsx')
| -rw-r--r-- | apps/web/components/dashboard/lists/PendingInvitationsCard.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/web/components/dashboard/lists/PendingInvitationsCard.tsx b/apps/web/components/dashboard/lists/PendingInvitationsCard.tsx index d893f4dc..95a916ff 100644 --- a/apps/web/components/dashboard/lists/PendingInvitationsCard.tsx +++ b/apps/web/components/dashboard/lists/PendingInvitationsCard.tsx @@ -142,9 +142,13 @@ export function PendingInvitationsCard() { return ( <Card> <CardHeader> - <CardTitle className="flex items-center gap-2"> + <CardTitle className="flex items-center gap-2 font-normal"> <Mail className="h-5 w-5" /> - {t("lists.invitations.pending")} ({invitations.length}) + {t("lists.invitations.pending")} + + <span className="rounded bg-secondary p-1 text-sm text-secondary-foreground"> + {invitations.length} + </span> </CardTitle> <CardDescription>{t("lists.invitations.description")}</CardDescription> </CardHeader> |
