Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export function DeviceAgentAccordionItem({
<AccordionTrigger className="px-4 hover:no-underline [&[data-state=open]]:pb-2">
<div className="flex items-center gap-3">
{isCompleted ? (
<CheckCircle2 className="text-green-600 dark:text-green-400 h-5 w-5" />
<CheckCircle2 className="text-primary h-5 w-5" />
) : (
<Circle className="text-muted-foreground h-5 w-5" />
)}
Expand Down Expand Up @@ -230,7 +230,7 @@ export function DeviceAgentAccordionItem({
<CardContent className="space-y-3">
<div className="flex items-center gap-2">
{agentDevice.isCompliant ? (
<CheckCircle2 className="text-green-600 dark:text-green-400 h-4 w-4" />
<CheckCircle2 className="text-primary h-4 w-4" />
) : (
<Circle className="text-amber-600 dark:text-amber-400 h-4 w-4" />
)}
Expand Down
2 changes: 1 addition & 1 deletion apps/portal/src/app/components/otp-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function OtpForm({ email }: OtpFormProps) {

return (
<Form {...form}>
<form className="grid gap-2" onSubmit={form.handleSubmit(onSubmit)}>
<form className="grid gap-4 place-items-center" onSubmit={form.handleSubmit(onSubmit)}>
<FormField
control={form.control}
name="otp"
Expand Down
Loading