Skip to content

Commit

Permalink
make adjust in font styles
Browse files Browse the repository at this point in the history
  • Loading branch information
mojganii committed Nov 8, 2023
1 parent 8f7b581 commit beb1c2e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,13 @@ 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(
Expand Down

0 comments on commit beb1c2e

Please sign in to comment.