From bffc70194004dafec53ef3a16d40ece18a6ea42b Mon Sep 17 00:00:00 2001 From: JongHoon Date: Tue, 15 Oct 2024 18:18:34 +0900 Subject: [PATCH] =?UTF-8?q?[Fix/#308]=20onboarding=204=20=EB=94=94?= =?UTF-8?q?=EC=9E=90=EC=9D=B8=20qa=20=EB=B0=98=EC=98=81=20#309?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: image 마진 값 수정 * fix: CTA 문구 완료 -> 확인 으로 수정 --- .../Guide/Interface/Sources/StartGuide/StartGuideView.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideView.swift b/Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideView.swift index 5204bc1a..ae0f6235 100644 --- a/Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideView.swift +++ b/Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideView.swift @@ -24,7 +24,7 @@ public struct StartGuideView: View { title ZStack(alignment: .bottom) { GeometryReader { geometry in - let bottleImageTopPadding: CGFloat = 48 + let bottleImageTopPadding: CGFloat = 62.0 HStack(spacing: 0) { Spacer() bottleImage @@ -32,6 +32,7 @@ public struct StartGuideView: View { Spacer() } .offset(y: bottleImageTopPadding) + .padding(.horizontal, 60.0 - BottlePaddingType.md.length) } doneButton .padding(.bottom, .lg) @@ -64,7 +65,7 @@ private extension StartGuideView { var doneButton: some View { SolidButton( - title: "완료", + title: "확인", sizeType: .large, buttonType: .throttle, action: { store.send(.doneButtonDidTapped) }