From 76d3911a37650c7dd57ab557c0d3c6514e661fde Mon Sep 17 00:00:00 2001 From: mmaybei Date: Fri, 23 Aug 2024 16:45:42 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix/#327=20=EB=A0=88=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=ED=85=8D=EC=8A=A4=ED=8A=B8=20=EC=88=98=EC=A0=95=20=EB=B0=8F=20?= =?UTF-8?q?cornerRadius=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/CheckInviteCodeView.swift | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/CheckInviteCodeView.swift b/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/CheckInviteCodeView.swift index 24ccb722..4b71008b 100644 --- a/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/CheckInviteCodeView.swift +++ b/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/CheckInviteCodeView.swift @@ -13,14 +13,18 @@ class CheckInviteCodeView: BaseView { // MARK: Property let enterInviteCodeView: JoinButtonView = JoinButtonView( - mainTitle: "초대 코드를 받았다면", - subTitle: "초대 코드가 없다면" - ) + mainTitle: "초대 코드 입력하기", + subTitle: "초대 코드를 받았다면" + ).then { + $0.layer.cornerRadius = 8 + } let createMeetingView: JoinButtonView = JoinButtonView( - mainTitle: "초대 코드 입력하기", - subTitle: "직접 모임 추가하기" - ) + mainTitle: "직접 모임 추가하기", + subTitle: "초대 코드가 없다면" + ).then { + $0.layer.cornerRadius = 8 + } private let checkInviteLabel: UILabel = UILabel().then { $0.setText("친구에게 받은\n모임 초대 코드가 있으신가요?", style: .head01, color: .gray8) From bc69c2178409056ca14aed369a252d8dd7a6ed06 Mon Sep 17 00:00:00 2001 From: mmaybei Date: Fri, 23 Aug 2024 16:46:02 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix/#327=20=EC=BB=B4=ED=8F=AC=EB=84=8C?= =?UTF-8?q?=ED=8A=B8=20=EB=82=B4=20=EC=98=A4=ED=86=A0=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=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 --- .../AddMeeting/CheckInviteCode/View/JoinButtonView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/JoinButtonView.swift b/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/JoinButtonView.swift index cdc74188..6b57b6d4 100644 --- a/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/JoinButtonView.swift +++ b/KkuMulKum/Source/AddMeeting/CheckInviteCode/View/JoinButtonView.swift @@ -51,14 +51,14 @@ class JoinButtonView: BaseView { override func setupAutoLayout() { subTitleLabel.snp.makeConstraints { - $0.top.equalToSuperview().offset(18) + $0.top.equalToSuperview().offset(14) $0.leading.equalToSuperview().offset(20) } mainTitleLabel.snp.makeConstraints { - $0.bottom.equalToSuperview().inset(18) + $0.bottom.equalToSuperview().inset(14) $0.leading.equalToSuperview().offset(20) - $0.top.equalTo(subTitleLabel.snp.bottom).offset(8) + $0.top.equalTo(subTitleLabel.snp.bottom).offset(2) } chevronImageView.snp.makeConstraints {