From 4ab15fc1bf5c2c1aa5f0a01bb71a01d7c4fc7f93 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 20 Dec 2025 20:19:01 +0000 Subject: [PATCH 1/2] style(onboarding): nudge icon up --- apps/macos/Sources/Clawdis/Onboarding.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/macos/Sources/Clawdis/Onboarding.swift b/apps/macos/Sources/Clawdis/Onboarding.swift index dc89775db..39b3bd5f8 100644 --- a/apps/macos/Sources/Clawdis/Onboarding.swift +++ b/apps/macos/Sources/Clawdis/Onboarding.swift @@ -146,8 +146,8 @@ struct OnboardingView: View { var body: some View { VStack(spacing: 0) { GlowingClawdisIcon(size: 156, glowIntensity: 0.28) - .offset(y: 58) - .frame(height: 226) + .offset(y: 33) + .frame(height: 201) GeometryReader { _ in HStack(spacing: 0) { From f6af51df34f29645c92b6040f756c4bc0a425a27 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 20 Dec 2025 20:24:18 +0000 Subject: [PATCH 2/2] style(onboarding): refine icon and bottom bar spacing --- apps/macos/Sources/Clawdis/Onboarding.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/macos/Sources/Clawdis/Onboarding.swift b/apps/macos/Sources/Clawdis/Onboarding.swift index 39b3bd5f8..83941a659 100644 --- a/apps/macos/Sources/Clawdis/Onboarding.swift +++ b/apps/macos/Sources/Clawdis/Onboarding.swift @@ -146,8 +146,8 @@ struct OnboardingView: View { var body: some View { VStack(spacing: 0) { GlowingClawdisIcon(size: 156, glowIntensity: 0.28) - .offset(y: 33) - .frame(height: 201) + .offset(y: 13) + .frame(height: 181) GeometryReader { _ in HStack(spacing: 0) { @@ -167,7 +167,7 @@ struct OnboardingView: View { self.navigationBar } - .frame(width: self.pageWidth, height: 820) + .frame(width: self.pageWidth, height: 840) .background(Color(NSColor.windowBackgroundColor)) .onAppear { self.currentPage = 0 @@ -1134,7 +1134,7 @@ struct OnboardingView: View { .buttonStyle(.borderedProminent) } .padding(.horizontal, 28) - .padding(.bottom, 28) + .padding(.bottom, 36) .frame(minHeight: 60) }