From d61380051672a8d29e1cc5d3c23aa7774d7d6051 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 20 Dec 2025 22:16:13 +0000 Subject: [PATCH] fix(onboarding): anchor bottom bar and reduce height --- apps/macos/Sources/Clawdis/Onboarding.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/macos/Sources/Clawdis/Onboarding.swift b/apps/macos/Sources/Clawdis/Onboarding.swift index 815861db7..c28cb3262 100644 --- a/apps/macos/Sources/Clawdis/Onboarding.swift +++ b/apps/macos/Sources/Clawdis/Onboarding.swift @@ -24,7 +24,7 @@ final class OnboardingController { let hosting = NSHostingController(rootView: OnboardingView()) let window = NSWindow(contentViewController: hosting) window.title = UIStrings.welcomeTitle - window.setContentSize(NSSize(width: 680, height: 815)) + window.setContentSize(NSSize(width: 680, height: 805)) window.styleMask = [.titled, .closable, .fullSizeContentView] window.titlebarAppearsTransparent = true window.titleVisibility = .hidden @@ -165,9 +165,10 @@ struct OnboardingView: View { } .frame(height: self.contentHeight) + Spacer(minLength: 0) self.navigationBar } - .frame(width: self.pageWidth, height: 915) + .frame(width: self.pageWidth, height: 805) .background(Color(NSColor.windowBackgroundColor)) .onAppear { self.currentPage = 0