Skip to content

Commit

Permalink
Fix content view bottom padding
Browse files Browse the repository at this point in the history
  • Loading branch information
petrpavlik committed Jun 8, 2020
1 parent d4fc378 commit 855a12a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Views/ActionSheetPrimaryView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ final class ActionSheetPrimaryView: UIView {
contentView.leadingAnchor.constraint(equalTo: parent.leadingAnchor),
contentView.trailingAnchor.constraint(equalTo: parent.trailingAnchor),
contentView.topAnchor.constraint(equalTo: parent.topAnchor, constant: topSpace),
contentView.bottomAnchor.constraint(equalTo: parent.bottomAnchor, constant: bottomSpace),
contentView.bottomAnchor.constraint(equalTo: parent.bottomAnchor, constant: -bottomSpace),
])
}

Expand Down

0 comments on commit 855a12a

Please sign in to comment.