diff --git a/web/src/routes/auth/cli/[code]/+page.svelte b/web/src/routes/auth/cli/[code]/+page.svelte index 12116f4a..f5932f61 100644 --- a/web/src/routes/auth/cli/[code]/+page.svelte +++ b/web/src/routes/auth/cli/[code]/+page.svelte @@ -171,6 +171,7 @@ {:else if status === 'success'}

Authorized

CLI session authorized. You can close this tab.

+ Go to your workspaces {/if} @@ -259,6 +260,27 @@ cursor: not-allowed; } + .primary-link { + display: block; + width: 100%; + padding: var(--space-3) var(--space-4); + margin-top: var(--space-4); + background: var(--accent-blue); + color: #fff; + border: none; + border-radius: var(--radius); + font-size: 0.95rem; + font-weight: 500; + font-family: var(--font-ui); + text-align: center; + text-decoration: none; + transition: opacity 0.15s; + } + + .primary-link:hover { + opacity: 0.9; + } + .account-chip { display: flex; align-items: center;