Skip to content

Commit

Permalink
[Chore] #21 - 기기대응
Browse files Browse the repository at this point in the history
  • Loading branch information
Heyjooo committed Jan 10, 2024
1 parent b77e3e1 commit 8d2cce3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,34 +109,34 @@ extension JoinAgreeView {
}

allCheck.snp.makeConstraints {
$0.top.equalTo(descriptionLabel.snp.bottom).offset(55.adjusted)
$0.top.equalTo(descriptionLabel.snp.bottom).offset(55.adjustedH)
$0.leading.trailing.equalToSuperview().inset(28.adjusted)
$0.height.equalTo(32.adjusted)
}

middleDivisionLine.snp.makeConstraints {
$0.top.equalTo(allCheck.snp.bottom).offset(5.adjusted)
$0.top.equalTo(allCheck.snp.bottom).offset(5.adjustedH)
$0.leading.trailing.equalToSuperview().inset(28.adjusted)
$0.height.equalTo(1.adjusted)
}

firstCheckView.snp.makeConstraints {
$0.top.equalTo(allCheck.snp.bottom).offset(16.adjusted)
$0.top.equalTo(allCheck.snp.bottom).offset(16.adjustedH)
$0.leading.trailing.height.equalTo(allCheck)
}

secondCheckView.snp.makeConstraints {
$0.top.equalTo(firstCheckView.snp.bottom).offset(16.adjusted)
$0.top.equalTo(firstCheckView.snp.bottom).offset(16.adjustedH)
$0.leading.trailing.height.equalTo(allCheck)
}

thirdCheckView.snp.makeConstraints {
$0.top.equalTo(secondCheckView.snp.bottom).offset(16.adjusted)
$0.top.equalTo(secondCheckView.snp.bottom).offset(16.adjustedH)
$0.leading.trailing.height.equalTo(allCheck)
}

fourthCheckView.snp.makeConstraints {
$0.top.equalTo(thirdCheckView.snp.bottom).offset(16.adjusted)
$0.top.equalTo(thirdCheckView.snp.bottom).offset(16.adjustedH)
$0.leading.trailing.height.equalTo(allCheck)
}

Expand Down

0 comments on commit 8d2cce3

Please sign in to comment.