Skip to content

Commit 06a1cd0

Browse files
committed
fix: replace dots with X icon in authorization connection indicator
1 parent ab67fd5 commit 06a1cd0

File tree

1 file changed

+7
-4
lines changed
  • web/apps/dashboard/app/(app)/[workspaceSlug]/projects/[projectId]/authorize

1 file changed

+7
-4
lines changed

web/apps/dashboard/app/(app)/[workspaceSlug]/projects/[projectId]/authorize/page.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
Github,
1010
ShieldAlert,
1111
User,
12+
XMark,
1213
} from "@unkey/icons";
1314
import { Button } from "@unkey/ui";
1415
import { useParams, useRouter } from "next/navigation";
@@ -130,10 +131,12 @@ export default function AuthorizeDeploymentPage() {
130131
<div className="flex items-center justify-center w-12 h-12 rounded-full border border-border bg-background">
131132
<Github iconSize="xl-thin" />
132133
</div>
133-
<div className="flex items-center gap-1">
134-
<div className="w-2 h-2 rounded-full bg-warning-9" />
135-
<div className="w-8 border-t border-dashed border-warning-9" />
136-
<div className="w-2 h-2 rounded-full bg-warning-9" />
134+
<div className="flex items-center gap-1.5">
135+
<div className="w-6 border-t border-dashed border-warning-9" />
136+
<div className="flex items-center justify-center w-6 h-6 rounded-full bg-warning-3 border border-warning-6">
137+
<XMark iconSize="sm-regular" className="text-warning-9" />
138+
</div>
139+
<div className="w-6 border-t border-dashed border-warning-9" />
137140
</div>
138141
<div className="flex items-center justify-center w-12 h-12 rounded-full border border-border bg-background">
139142
<ShieldAlert iconSize="xl-thin" className="text-warning-9" />

0 commit comments

Comments
 (0)