From caa80f7c075e25e8d2343a8be8babe80c51bb66f Mon Sep 17 00:00:00 2001 From: gagan Date: Wed, 24 Jun 2026 15:42:31 +0530 Subject: [PATCH] fix(onboarding): inline completion checkmark & widen indicator gap (#641) - Remove the circular background and pulsing ring behind the completion checkmark; place the tick inline to the right of the "You're All Set!" heading - Increase spacing between the step indicator and step content --- .../components/onboarding/step-indicator.tsx | 2 +- .../onboarding/steps/completion-step.tsx | 37 +++++++------------ 2 files changed, 15 insertions(+), 24 deletions(-) diff --git a/apps/x/apps/renderer/src/components/onboarding/step-indicator.tsx b/apps/x/apps/renderer/src/components/onboarding/step-indicator.tsx index 8aa4e9e9..d0b41991 100644 --- a/apps/x/apps/renderer/src/components/onboarding/step-indicator.tsx +++ b/apps/x/apps/renderer/src/components/onboarding/step-indicator.tsx @@ -26,7 +26,7 @@ export function StepIndicator({ currentStep, path }: StepIndicatorProps) { const currentIndex = steps.findIndex(s => s.step === currentStep) return ( -
+
{steps.map((s, i) => ( {i > 0 && ( diff --git a/apps/x/apps/renderer/src/components/onboarding/steps/completion-step.tsx b/apps/x/apps/renderer/src/components/onboarding/steps/completion-step.tsx index 2b32309a..2f5d550c 100644 --- a/apps/x/apps/renderer/src/components/onboarding/steps/completion-step.tsx +++ b/apps/x/apps/renderer/src/components/onboarding/steps/completion-step.tsx @@ -13,34 +13,25 @@ export function CompletionStep({ state }: CompletionStepProps) { return (
- {/* Animated checkmark */} + {/* Title with checkmark on the right */} - {/* Pulsing ring */} - -
- -
-
- - {/* Title */} - - You're All Set! - +

+ You're All Set! +

+ + + +