fix(ui): increase onboarding horizontal padding

This commit is contained in:
Peter Steinberger
2025-12-13 11:10:22 +00:00
parent ec653b7b80
commit 3a6ab81549
2 changed files with 3 additions and 1 deletions

View File

@@ -487,7 +487,7 @@ struct OnboardingView: View {
.keyboardShortcut(.return)
.buttonStyle(.borderedProminent)
}
.padding(.horizontal, 20)
.padding(.horizontal, 28)
.padding(.bottom, 12)
.frame(height: 60)
}
@@ -497,6 +497,7 @@ struct OnboardingView: View {
content()
Spacer()
}
.padding(.horizontal, 28)
.frame(width: self.pageWidth, alignment: .top)
}