diff --git a/Gaze/Views/Containers/OnboardingContainerView.swift b/Gaze/Views/Containers/OnboardingContainerView.swift index fa65ffd..4139915 100644 --- a/Gaze/Views/Containers/OnboardingContainerView.swift +++ b/Gaze/Views/Containers/OnboardingContainerView.swift @@ -111,6 +111,7 @@ struct OnboardingContainerView: View { ) .foregroundColor(.primary) } + .buttonStyle(.plain) .glassEffectIfAvailable( GlassStyle.regular.interactive(), in: .rect(cornerRadius: 10)) } @@ -134,6 +135,7 @@ struct OnboardingContainerView: View { ) .foregroundColor(.white) } + .buttonStyle(.plain) .glassEffectIfAvailable( GlassStyle.regular.tint(currentPage == 5 ? .green : .accentColor) .interactive(), diff --git a/Gaze/Views/Setup/BlinkSetupView.swift b/Gaze/Views/Setup/BlinkSetupView.swift index 0068e82..126a9b9 100644 --- a/Gaze/Views/Setup/BlinkSetupView.swift +++ b/Gaze/Views/Setup/BlinkSetupView.swift @@ -111,6 +111,7 @@ struct BlinkSetupView: View { .padding(.horizontal, 16) .padding(.vertical, 10) } + .buttonStyle(.plain) .glassEffectIfAvailable(GlassStyle.regular.tint(.accentColor).interactive(), in: .rect(cornerRadius: 10)) } diff --git a/Gaze/Views/Setup/LookAwaySetupView.swift b/Gaze/Views/Setup/LookAwaySetupView.swift index a032f6b..0841f84 100644 --- a/Gaze/Views/Setup/LookAwaySetupView.swift +++ b/Gaze/Views/Setup/LookAwaySetupView.swift @@ -132,6 +132,7 @@ struct LookAwaySetupView: View { .padding(.horizontal, 16) .padding(.vertical, 10) } + .buttonStyle(.plain) .glassEffectIfAvailable(GlassStyle.regular.tint(.accentColor).interactive(), in: .rect(cornerRadius: 10)) } diff --git a/Gaze/Views/Setup/PostureSetupView.swift b/Gaze/Views/Setup/PostureSetupView.swift index cb702e8..26bfae3 100644 --- a/Gaze/Views/Setup/PostureSetupView.swift +++ b/Gaze/Views/Setup/PostureSetupView.swift @@ -113,6 +113,7 @@ struct PostureSetupView: View { .padding(.horizontal, 16) .padding(.vertical, 10) } + .buttonStyle(.plain) .glassEffectIfAvailable(GlassStyle.regular.tint(.accentColor).interactive(), in: .rect(cornerRadius: 10)) }