mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-03 19:20:07 +02:00
fix(onboarding): match Skip button size to Continue (size="lg")
Skip used the default button size (h-8) while Continue used size="lg" (h-9), so the two adjacent action buttons rendered visibly different heights. Promote Skip to size="lg" in step-question and step-runtime-connect so they line up. Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
@@ -177,7 +177,7 @@ export function StepQuestion({
|
||||
{footerHint}
|
||||
</span>
|
||||
<div className="flex items-center gap-2">
|
||||
<Button variant="secondary" onClick={onSkip}>
|
||||
<Button size="lg" variant="secondary" onClick={onSkip}>
|
||||
{t(($) => $.common.skip)}
|
||||
</Button>
|
||||
<Button size="lg" disabled={!canContinue} onClick={confirmAdvance}>
|
||||
|
||||
@@ -281,6 +281,7 @@ function FancyView({
|
||||
</span>
|
||||
<div className="flex items-center gap-2">
|
||||
<Button
|
||||
size="lg"
|
||||
variant="secondary"
|
||||
disabled={submitting}
|
||||
onClick={handleSkip}
|
||||
|
||||
Reference in New Issue
Block a user