From da95b9a400e7530cc27dabbbaa595d20257e82d5 Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Wed, 1 Jun 2022 08:13:55 -0700 Subject: [PATCH] set max auth button width to 300 --- apple/OmnivoreKit/Sources/Views/Buttons/AppleSignInButton.swift | 2 +- apple/OmnivoreKit/Sources/Views/Buttons/GoogleAuthButton.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apple/OmnivoreKit/Sources/Views/Buttons/AppleSignInButton.swift b/apple/OmnivoreKit/Sources/Views/Buttons/AppleSignInButton.swift index 4242e84ae..a4e206e52 100644 --- a/apple/OmnivoreKit/Sources/Views/Buttons/AppleSignInButton.swift +++ b/apple/OmnivoreKit/Sources/Views/Buttons/AppleSignInButton.swift @@ -19,7 +19,7 @@ public struct AppleSignInButton: View { onCompletion: onCompletion ) .frame(height: 54) - .frame(maxWidth: 260) + .frame(maxWidth: 300) .cornerRadius(8) .signInWithAppleButtonStyle(.white) } diff --git a/apple/OmnivoreKit/Sources/Views/Buttons/GoogleAuthButton.swift b/apple/OmnivoreKit/Sources/Views/Buttons/GoogleAuthButton.swift index ea1d59c76..11c71fd26 100644 --- a/apple/OmnivoreKit/Sources/Views/Buttons/GoogleAuthButton.swift +++ b/apple/OmnivoreKit/Sources/Views/Buttons/GoogleAuthButton.swift @@ -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())