Skip to content

Commit

Permalink
[Chore] sopt-makers#151 - 메인 뷰 네비바 UI 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lsj8706 committed Apr 14, 2023
1 parent 58a9a85 commit 694b106
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MainVC: UIViewController, MainViewControllable {
cv.isScrollEnabled = true
cv.showsHorizontalScrollIndicator = false
cv.showsVerticalScrollIndicator = false
cv.contentInset = UIEdgeInsets(top: 16, left: 0, bottom: 0, right: 0)
cv.contentInset = UIEdgeInsets(top: 7, left: 0, bottom: 0, right: 0)
cv.backgroundColor = .clear
return cv
}()
Expand Down Expand Up @@ -70,7 +70,7 @@ extension MainVC {
}

collectionView.snp.makeConstraints { make in
make.top.equalTo(naviBar.snp.bottom)
make.top.equalTo(naviBar.snp.bottom).offset(7)
make.leading.trailing.bottom.equalTo(view.safeAreaLayoutGuide)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ final class MainNavigationBar: UIView {
extension MainNavigationBar {
private func setUI() {
self.backgroundColor = DSKitAsset.Colors.black100.color
self.noticeButton.isHidden = true // 추후 알림 기능 생기면 hidden 해제
}

private func setLayout() {
Expand Down

0 comments on commit 694b106

Please sign in to comment.