From e7300c7c155a955d3d37bd197d53636cda1294ac Mon Sep 17 00:00:00 2001 From: Jonas Richard Richter Date: Tue, 17 May 2022 19:34:30 +0200 Subject: [PATCH] Some minor UI tweaks to Onboarding Flow --- BA-Schedule/Sources/Views/Onboarding/OnboardingView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BA-Schedule/Sources/Views/Onboarding/OnboardingView.swift b/BA-Schedule/Sources/Views/Onboarding/OnboardingView.swift index 5090ebb..98c5ac7 100644 --- a/BA-Schedule/Sources/Views/Onboarding/OnboardingView.swift +++ b/BA-Schedule/Sources/Views/Onboarding/OnboardingView.swift @@ -22,6 +22,7 @@ struct OnboardingView: View { Text("WELCOME_MESSAGE") .font(.largeTitle) .fontWeight(.bold) + .padding(.horizontal) Spacer() @@ -29,8 +30,7 @@ struct OnboardingView: View { Feature(systemImage: "calendar.day.timeline.leading", iconColor: .blue, title: "FEATURE_1_TITLE", description: "FEATURE_1_DESCR") Feature(systemImage: "lock.shield", iconColor: .yellow, title: "FEATURE_2_TITLE", description: "FEATURE_2_DESCR") - } - .padding(.horizontal) + }.padding(.horizontal, 30) Spacer()