diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-11-27 23:12:22 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-11-27 23:12:22 +0000 |
| commit | a13a227e20f2890dec4a361b8fc68dda5adc5d22 (patch) | |
| tree | 377aa9c03cdfd43e8ce26ff6e871e0b2d8059a13 /apps/web/components | |
| parent | adde8099095a7be88e5027f1010e1a40e8748149 (diff) | |
| download | karakeep-a13a227e20f2890dec4a361b8fc68dda5adc5d22.tar.zst | |
fix: fix colors in invitation form
Diffstat (limited to '')
| -rw-r--r-- | apps/web/components/invite/InviteAcceptForm.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/web/components/invite/InviteAcceptForm.tsx b/apps/web/components/invite/InviteAcceptForm.tsx index dcebed73..95a0e1eb 100644 --- a/apps/web/components/invite/InviteAcceptForm.tsx +++ b/apps/web/components/invite/InviteAcceptForm.tsx @@ -86,7 +86,7 @@ export default function InviteAcceptForm({ token }: InviteAcceptFormProps) { </CardHeader> <CardContent className="space-y-4"> <div className="flex items-center justify-center"> - <Loader2 className="h-8 w-8 animate-spin text-blue-600" /> + <Loader2 className="h-8 w-8 animate-spin text-primary" /> </div> </CardContent> </Card> @@ -141,7 +141,7 @@ export default function InviteAcceptForm({ token }: InviteAcceptFormProps) { </div> <div className="space-y-2 text-center"> - <p className="text-sm text-gray-600"> + <p className="text-sm text-muted-foreground"> Please contact an administrator to request a new invitation. </p> </div> @@ -170,15 +170,15 @@ export default function InviteAcceptForm({ token }: InviteAcceptFormProps) { </CardHeader> <CardContent className="space-y-6"> <div className="flex items-center justify-center"> - <UserPlus className="h-12 w-12 text-blue-600" /> + <UserPlus className="h-12 w-12 text-primary" /> </div> <div className="space-y-2 text-center"> <div className="flex items-center justify-center space-x-2"> - <Mail className="h-4 w-4 text-gray-500" /> - <p className="text-sm text-gray-600">Invited email:</p> + <Mail className="h-4 w-4 text-muted-foreground" /> + <p className="text-sm text-muted-foreground">Invited email:</p> </div> - <p className="font-medium text-gray-900">{inviteData.email}</p> + <p className="font-medium text-foreground">{inviteData.email}</p> </div> <Form {...form}> |
