diff --git a/StreetDrop/StreetDrop/Presentation/MainScene/View/MainViewController.swift b/StreetDrop/StreetDrop/Presentation/MainScene/View/MainViewController.swift index 3a01e4a..12d0691 100644 --- a/StreetDrop/StreetDrop/Presentation/MainScene/View/MainViewController.swift +++ b/StreetDrop/StreetDrop/Presentation/MainScene/View/MainViewController.swift @@ -357,7 +357,7 @@ private extension MainViewController { self.view.addSubview(bubbleCommentView) bubbleCommentView.snp.makeConstraints { $0.centerX.equalToSuperview() - $0.verticalEdges.greaterThanOrEqualTo(self.view.safeAreaLayoutGuide).inset(16) + $0.top.greaterThanOrEqualTo(self.view.safeAreaLayoutGuide).inset(16) $0.width.lessThanOrEqualTo(self.view.safeAreaLayoutGuide).inset(32) $0.bottom.equalTo(musicDropButton.snp.top).offset(-10) } diff --git a/StreetDrop/StreetDrop/Presentation/SearchingMusicScene/View/SearchingMusicViewController.swift b/StreetDrop/StreetDrop/Presentation/SearchingMusicScene/View/SearchingMusicViewController.swift index 019d6c7..2121f03 100644 --- a/StreetDrop/StreetDrop/Presentation/SearchingMusicScene/View/SearchingMusicViewController.swift +++ b/StreetDrop/StreetDrop/Presentation/SearchingMusicScene/View/SearchingMusicViewController.swift @@ -669,7 +669,6 @@ private extension SearchingMusicViewController { // TODO: 56 -> 60으로 바꼈는지 추후에 피그마 확인 $0.height.equalTo(56) $0.top.equalTo(view.safeAreaLayoutGuide) - $0.top.equalTo(bannerView.snp.bottom).offset(10) $0.leading.equalToSuperview() $0.trailing.equalToSuperview() }