diff --git a/dashboard/src/routes/+page.svelte b/dashboard/src/routes/+page.svelte index bd7c7c60..10870379 100644 --- a/dashboard/src/routes/+page.svelte +++ b/dashboard/src/routes/+page.svelte @@ -254,14 +254,14 @@ // ── Step 2 animation state: "Add more devices, run bigger models" ── let deviceAnimPhase = $state(0); // 0=waiting, 1=macbook, 2=studio joins, 3=connection+mid unlock, 4=big unlock let showContinueStep2 = $state(false); - const studioX = tweened(540, { duration: 700, easing: cubicOut }); + const studioX = tweened(580, { duration: 700, easing: cubicOut }); const studioOpacity = tweened(0, { duration: 700, easing: cubicOut }); $effect(() => { if (onboardingStep === 3) { deviceAnimPhase = 0; showContinueStep2 = false; - studioX.set(540, { duration: 0 }); + studioX.set(580, { duration: 0 }); studioOpacity.set(0, { duration: 0 }); const t1 = setTimeout(() => { @@ -269,7 +269,7 @@ }, 100); const t2 = setTimeout(() => { deviceAnimPhase = 2; - studioX.set(340); + studioX.set(370); studioOpacity.set(1); }, 900); const t3 = setTimeout(() => { @@ -2659,9 +2659,9 @@ -