summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMojgan <Mojgan.jelodar@codic.se>2023-11-09 15:29:59 +0100
committerBug Magnet <marco.nikic@mullvad.net>2023-11-10 12:35:42 +0100
commit0f048c73f67fba27756a219f2cb9d09350cd687c (patch)
tree9d0a6f4d93f495113a1de7c1389a505ce4dfaa11
parent68ec03b549ef41f9b597afda9db92a73e83d8b1b (diff)
downloadmullvadvpn-0f048c73f67fba27756a219f2cb9d09350cd687c.tar.xz
mullvadvpn-0f048c73f67fba27756a219f2cb9d09350cd687c.zip
fix font weight and text
-rw-r--r--ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift5
1 files changed, 2 insertions, 3 deletions
diff --git a/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift b/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift
index 4f653b51ff..e14b1e6eba 100644
--- a/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift
+++ b/ios/MullvadVPN/View controllers/RevokedDevice/RevokedDeviceViewController.swift
@@ -27,20 +27,19 @@ class RevokedDeviceViewController: UIViewController, RootContainment {
value: "Device is inactive",
comment: ""
)
- titleLabel.font = UIFont.systemFont(ofSize: 32)
return titleLabel
}()
private lazy var bodyLabel: UILabel = {
let bodyLabel = UILabel()
bodyLabel.translatesAutoresizingMaskIntoConstraints = false
- bodyLabel.font = UIFont.systemFont(ofSize: 17)
+ bodyLabel.font = UIFont.systemFont(ofSize: 17, weight: .semibold)
bodyLabel.numberOfLines = 0
bodyLabel.textColor = .white
bodyLabel.text = NSLocalizedString(
"DESCRIPTION_LABEL",
tableName: "RevokedDevice",
- value: "You have revoked this device. To connect again, you will need to log back in.",
+ value: "You have removed this device. To connect again, you will need to log back in.",
comment: ""
)
return bodyLabel