From 9ae73e87eb48b7812e44bee935ce02069ab796d3 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 20 Dec 2025 19:50:25 +0000 Subject: [PATCH] fix(onboarding): restore bottom bar padding --- apps/macos/Sources/Clawdis/Onboarding.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/macos/Sources/Clawdis/Onboarding.swift b/apps/macos/Sources/Clawdis/Onboarding.swift index 702438eb25..dc89775db0 100644 --- a/apps/macos/Sources/Clawdis/Onboarding.swift +++ b/apps/macos/Sources/Clawdis/Onboarding.swift @@ -167,7 +167,7 @@ struct OnboardingView: View { self.navigationBar } - .frame(width: self.pageWidth, height: 720) + .frame(width: self.pageWidth, height: 820) .background(Color(NSColor.windowBackgroundColor)) .onAppear { self.currentPage = 0 @@ -1134,8 +1134,8 @@ struct OnboardingView: View { .buttonStyle(.borderedProminent) } .padding(.horizontal, 28) - .padding(.bottom, 24) - .frame(height: 60) + .padding(.bottom, 28) + .frame(minHeight: 60) } private func onboardingPage(@ViewBuilder _ content: () -> some View) -> some View {