Skip to content

Commit

Permalink
[Design] NearStopViewButton 주변 색 제거 / separator 값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhaeun-la committed Apr 11, 2024
1 parent 67ab92d commit b84796b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ public final class FavoritesViewController: UIViewController {
tableView.sectionHeaderTopPadding = 0
tableView.separatorInset = UIEdgeInsets(
top: 0,
left: 18,
left: 15,
bottom: 0,
right: 18
right: 15
)
return tableView
}()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,20 +160,20 @@ public final class SearchViewController: UIViewController {
constant: -15
),

nearByStopPaddingView.topAnchor.constraint(
equalTo: nearBusStopHeaderLabel.bottomAnchor,
constant: 8
),
nearByStopPaddingView.leadingAnchor.constraint(
equalTo: safeArea.leadingAnchor
),
nearByStopPaddingView.trailingAnchor.constraint(
equalTo: safeArea.trailingAnchor
),
// nearByStopPaddingView.topAnchor.constraint(
// equalTo: nearBusStopHeaderLabel.bottomAnchor,
// constant: 8
// ),
// nearByStopPaddingView.leadingAnchor.constraint(
// equalTo: safeArea.leadingAnchor
// ),
// nearByStopPaddingView.trailingAnchor.constraint(
// equalTo: safeArea.trailingAnchor
// ),

nearByStopView.topAnchor.constraint(
equalTo: nearByStopPaddingView.topAnchor,
constant: 17
equalTo: nearBusStopHeaderLabel.bottomAnchor,
constant: 15
),
nearByStopView.centerXAnchor.constraint(
equalTo: safeArea.centerXAnchor
Expand All @@ -182,10 +182,6 @@ public final class SearchViewController: UIViewController {
equalTo: view.widthAnchor,
multiplier: 0.95
),
nearByStopView.bottomAnchor.constraint(
equalTo: nearByStopPaddingView.bottomAnchor,
constant: -17
),

recentSearchHeaderView.topAnchor.constraint(
equalTo: safeArea.topAnchor,
Expand Down

0 comments on commit b84796b

Please sign in to comment.