diff --git a/Cryptomator/VaultList/VaultListViewController.swift b/Cryptomator/VaultList/VaultListViewController.swift index 6daa47166..70e7c569a 100644 --- a/Cryptomator/VaultList/VaultListViewController.swift +++ b/Cryptomator/VaultList/VaultListViewController.swift @@ -150,9 +150,10 @@ class VaultListViewController: ListViewController { let textLabel = UILabel() textLabel.text = "Lifetime License is 33%* off in December!" textLabel.textColor = .white - textLabel.font = UIFont.preferredFont(forTextStyle: .body) + textLabel.font = UIFont.preferredFont(forTextStyle: .footnote) textLabel.adjustsFontSizeToFitWidth = true textLabel.minimumScaleFactor = 0.5 + textLabel.numberOfLines = 2 textLabel.translatesAutoresizingMaskIntoConstraints = false let dismissButton = UIButton(type: .close) @@ -187,7 +188,7 @@ class VaultListViewController: ListViewController { banner.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: -16), banner.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor, constant: -16), banner.centerXAnchor.constraint(equalTo: view.centerXAnchor), - banner.heightAnchor.constraint(equalToConstant: 60) + banner.heightAnchor.constraint(equalToConstant: 50) ]) bannerView = banner