From f3ceb390aae0e7c3768e47dc05ad5f5cb3e6136f Mon Sep 17 00:00:00 2001 From: taipaise Date: Tue, 17 Feb 2026 20:52:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=A0=9C=EB=B3=B4=ED=95=98=EA=B8=B0=20?= =?UTF-8?q?=EB=A7=90=ED=92=8D=EC=84=A0=20label=20=ED=8F=B0=ED=8A=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95,=20=EB=A3=A8=ED=8B=B4=20=EB=93=B1=EB=A1=9D?= =?UTF-8?q?=ED=99=94=EB=A9=B4=20=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8=20?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/EmotionRegisterCompletionViewController.swift | 7 ++++++- .../View/EmotionRegistrationViewController.swift | 7 ++++++- .../View/Component/RoutineCreationCardView.swift | 10 +++++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegisterCompletionViewController.swift b/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegisterCompletionViewController.swift index c8444920..84166fe9 100644 --- a/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegisterCompletionViewController.swift +++ b/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegisterCompletionViewController.swift @@ -16,6 +16,7 @@ final class EmotionRegisterCompletionViewController: UIViewController { static let speechImageBottomSpacing: CGFloat = 24 static let speechLabelHorizontalSpacing: CGFloat = 20 static let speechLabelTopSpacing: CGFloat = 22 + static let speechLabelBottomSpacing: CGFloat = 32 static let groundImageHeight: CGFloat = 171 static let pomoImageWidth: CGFloat = 200 static let pomoImageHeight: CGFloat = 282 @@ -79,7 +80,10 @@ final class EmotionRegisterCompletionViewController: UIViewController { speechImageView.image = BitnagilGraphic.marbleSpeechGraphic?.withRenderingMode(.alwaysTemplate) speechImageView.tintColor = BitnagilColor.gray10 - speechLabel.font = BitnagilFont.init(style: .cafe24Title2, weight: .light).font + speechLabel.font = BitnagilFont.init( + family: .cafe24Ssurround, + style: .cafe24Title2, + weight: .light).font speechLabel.numberOfLines = 2 speechLabel.textColor = .white speechLabel.textAlignment = .center @@ -139,6 +143,7 @@ final class EmotionRegisterCompletionViewController: UIViewController { speechLabel.snp.makeConstraints { make in make.top.equalTo(speechImageView.snp.top).offset(Layout.speechLabelTopSpacing) + make.bottom.equalTo(speechImageView.snp.bottom).offset(-Layout.speechLabelBottomSpacing) make.horizontalEdges.equalTo(speechImageView).inset(Layout.speechImageHorizontalSpacing) } } diff --git a/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegistrationViewController.swift b/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegistrationViewController.swift index 84c0a181..7f83c5e8 100644 --- a/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegistrationViewController.swift +++ b/Projects/Presentation/Sources/EmotionRegister/View/EmotionRegistrationViewController.swift @@ -25,6 +25,7 @@ final class EmotionRegistrationViewController: BaseViewController Void)? { didSet { contentView.action = onAction } } @@ -164,9 +165,12 @@ final class RoutineCreationCardView