Skip to content

Commit

Permalink
fixed ALS-1563 distance duration time overlapping on navigation footer
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanmakeen committed Jul 20, 2023
1 parent 7115b79 commit 9a8a587
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ enum RouteButtonState {
}

final class NavigationHeaderView: UIView {
private var isiPad = UIDevice.current.userInterfaceIdiom == .pad
var dismissHandler: VoidHandler?
var switchRouteVisibility: ((RouteButtonState)->())?
var model: NavigationHeaderViewModel! {
Expand Down Expand Up @@ -188,7 +189,7 @@ final class NavigationHeaderView: UIView {
}

routeVisibilityButton.snp.makeConstraints {
$0.width.equalTo(131).priority(999)
$0.width.equalTo(110).priority(999)
}

exitButton.snp.makeConstraints {
Expand Down

0 comments on commit 9a8a587

Please sign in to comment.