set max auth button width to 300

This commit is contained in:
Satindar Dhillon
2022-06-01 08:13:55 -07:00
parent 5ef3768548
commit da95b9a400
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ public struct AppleSignInButton: View {
onCompletion: onCompletion
)
.frame(height: 54)
.frame(maxWidth: 260)
.frame(maxWidth: 300)
.cornerRadius(8)
.signInWithAppleButtonStyle(.white)
}

View File

@ -17,7 +17,7 @@ public struct GoogleAuthButton: View {
.font(isMacApp ? .appCaption : .appTitleThree)
.foregroundColor(.black)
}
.frame(maxWidth: 260)
.frame(maxWidth: 300)
.frame(height: isMacApp ? 30 : 54)
}
.buttonStyle(GoogleButtonStyle())