Skip to content

Commit 2635bd6

Browse files
committed
[#198] scrollView와 writingReviewButton 사이 offset 추가
1 parent 3624101 commit 2635bd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

EATSSU/App/Sources/Presentation/Review/MainReviewView/MainReviewView.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,12 @@ final class MainReviewView: BaseUIView {
6868
}
6969
scrollView.snp.makeConstraints { make in
7070
make.top.leading.trailing.equalTo(safeAreaLayoutGuide)
71-
make.bottom.equalTo(writingReviewButton.snp.top)
71+
make.bottom.equalTo(writingReviewButton.snp.top).offset(-10)
7272
}
7373
contentView.snp.makeConstraints { make in
7474
make.edges.equalTo(scrollView.contentLayoutGuide)
7575
make.width.equalTo(scrollView.frameLayoutGuide)
76+
// TODO: 수정 필요
7677
make.height.equalTo(2000)
7778
}
7879
summaryView.snp.makeConstraints { make in

0 commit comments

Comments
 (0)