We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e367f commit 7e4934cCopy full SHA for 7e4934c
1 file changed
src/Projects/BKPresentation/Sources/Common/Component/ToastMessageView.swift
@@ -37,7 +37,7 @@ final class ToastMessageView: UIView {
37
private func setupLayout() {
38
messageLabel.snp.makeConstraints {
39
$0.centerX.equalToSuperview()
40
- $0.horizontalEdges.greaterThanOrEqualToSuperview().inset(16)
+ $0.horizontalEdges.equalToSuperview().inset(16)
41
$0.verticalEdges.equalToSuperview().inset(12)
42
}
43
@@ -58,7 +58,7 @@ final class ToastMessageView: UIView {
58
toastView.snp.makeConstraints {
59
60
$0.bottom.equalTo(keyWindow.safeAreaLayoutGuide.snp.bottom).inset(88)
61
- $0.width.equalTo(keyWindow.safeAreaLayoutGuide.snp.width).inset(72)
+ $0.width.equalTo(keyWindow.safeAreaLayoutGuide.snp.width).inset(36)
62
63
64
toastView.alpha = 0.0
0 commit comments