Skip to content

Commit

Permalink
Feat [#39] 후기 개수에 따른 height 동적 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
chaentopia committed May 26, 2023
1 parent 36185ba commit 8f1a528
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand All @@ -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)
}

Expand Down

0 comments on commit 8f1a528

Please sign in to comment.