mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix spacing on welcome view
This commit is contained in:
parent
e219f94504
commit
557bb2ba7b
1 changed files with 3 additions and 12 deletions
|
|
@ -225,19 +225,11 @@ struct WelcomeView: View {
|
|||
} else {
|
||||
VStack(alignment: .leading, spacing: containerSize.height < 500 ? 12 : 50) {
|
||||
logoView
|
||||
.padding(.bottom, 20)
|
||||
headlineView
|
||||
if containerSize.width > 500 {
|
||||
authProviderButtonStack
|
||||
} else {
|
||||
HStack {
|
||||
Spacer()
|
||||
authProviderButtonStack
|
||||
Spacer()
|
||||
}
|
||||
}
|
||||
authProviderButtonStack
|
||||
footerView
|
||||
Spacer(minLength: 1)
|
||||
|
||||
Spacer()
|
||||
|
||||
Button(
|
||||
action: { showAdvancedLogin = true },
|
||||
|
|
@ -249,7 +241,6 @@ struct WelcomeView: View {
|
|||
.frame(maxWidth: .infinity, alignment: .center)
|
||||
}
|
||||
)
|
||||
.padding(.bottom)
|
||||
}
|
||||
.padding()
|
||||
.sheet(isPresented: $showEmailLoginModal) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue