Showing
1 changed file
with
4 additions
and
4 deletions
... | @@ -113,16 +113,16 @@ extension UIViewController { | ... | @@ -113,16 +113,16 @@ extension UIViewController { |
113 | if UIDevice.current.userInterfaceIdiom == .pad { | 113 | if UIDevice.current.userInterfaceIdiom == .pad { |
114 | // iPad | 114 | // iPad |
115 | if (fontWeight == "bold") { | 115 | if (fontWeight == "bold") { |
116 | - titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 20) | 116 | + titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 21) |
117 | } else { | 117 | } else { |
118 | - titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 20) | 118 | + titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 21) |
119 | } | 119 | } |
120 | } else { | 120 | } else { |
121 | // not iPad (iPhone, mac, tv, carPlay, unspecified) | 121 | // not iPad (iPhone, mac, tv, carPlay, unspecified) |
122 | if (fontWeight == "bold") { | 122 | if (fontWeight == "bold") { |
123 | - titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 17) | 123 | + titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 18) |
124 | } else { | 124 | } else { |
125 | - titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 17) | 125 | + titleLabel.font = UIFont(name: "BTCosmo-Bold", size: 18) |
126 | } | 126 | } |
127 | } | 127 | } |
128 | titleLabel.adjustsFontSizeToFitWidth = true | 128 | titleLabel.adjustsFontSizeToFitWidth = true | ... | ... |
-
Please register or login to post a comment