fix(onboarding): restore bottom bar padding

This commit is contained in:
Peter Steinberger
2025-12-20 19:50:25 +00:00
parent 77582ff5d4
commit 9ae73e87eb

View File

@@ -167,7 +167,7 @@ struct OnboardingView: View {
self.navigationBar self.navigationBar
} }
.frame(width: self.pageWidth, height: 720) .frame(width: self.pageWidth, height: 820)
.background(Color(NSColor.windowBackgroundColor)) .background(Color(NSColor.windowBackgroundColor))
.onAppear { .onAppear {
self.currentPage = 0 self.currentPage = 0
@@ -1134,8 +1134,8 @@ struct OnboardingView: View {
.buttonStyle(.borderedProminent) .buttonStyle(.borderedProminent)
} }
.padding(.horizontal, 28) .padding(.horizontal, 28)
.padding(.bottom, 24) .padding(.bottom, 28)
.frame(height: 60) .frame(minHeight: 60)
} }
private func onboardingPage(@ViewBuilder _ content: () -> some View) -> some View { private func onboardingPage(@ViewBuilder _ content: () -> some View) -> some View {