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) 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 {