From 8f1a52850bb267681346b779875ccc7ea46ff414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=B1=84=EC=9D=80?= Date: Fri, 26 May 2023 16:50:20 +0900 Subject: [PATCH] =?UTF-8?q?Feat=20[#39]=20=ED=9B=84=EA=B8=B0=20=EA=B0=9C?= =?UTF-8?q?=EC=88=98=EC=97=90=20=EB=94=B0=EB=A5=B8=20height=20=EB=8F=99?= =?UTF-8?q?=EC=A0=81=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/Review/ReviewView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SOPT-32nd-APP4-CarrotiOS/SOPT-32nd-APP4-CarrotiOS/Presentation/Review/ReviewView.swift b/SOPT-32nd-APP4-CarrotiOS/SOPT-32nd-APP4-CarrotiOS/Presentation/Review/ReviewView.swift index 9570fe1..3660006 100644 --- a/SOPT-32nd-APP4-CarrotiOS/SOPT-32nd-APP4-CarrotiOS/Presentation/Review/ReviewView.swift +++ b/SOPT-32nd-APP4-CarrotiOS/SOPT-32nd-APP4-CarrotiOS/Presentation/Review/ReviewView.swift @@ -107,13 +107,13 @@ final class ReviewView: BaseView { sendReviewView.snp.makeConstraints{ $0.top.equalTo(sendImageView.snp.bottom) $0.width.equalTo(sendImageView) - $0.height.equalTo(127) $0.leading.trailing.equalToSuperview().inset(16) $0.centerX.equalToSuperview() } sendReviewLabel.snp.makeConstraints{ $0.centerY.equalToSuperview() + $0.top.bottom.equalToSuperview().inset(23) $0.leading.equalToSuperview().offset(12) } @@ -132,13 +132,13 @@ final class ReviewView: BaseView { receiveReviewView.snp.makeConstraints{ $0.top.equalTo(receiveImageView.snp.bottom) $0.width.equalTo(receiveImageView) - $0.height.equalTo(127) $0.leading.trailing.equalToSuperview().inset(16) $0.centerX.equalToSuperview() } receiveReviewLabel.snp.makeConstraints{ $0.centerY.equalToSuperview() + $0.top.bottom.equalToSuperview().inset(23) $0.leading.equalToSuperview().offset(12) }