Skip to content

Commit 7dc64ed

Browse files
Merge pull request #18459 from wordpress-mobile/issue/dashboard-next-post-title-font
Posts Card: change the title font
2 parents b0c9df4 + 6e3d708 commit 7dc64ed

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Cards/Posts/DashboardEmptyPostsCardCell.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import UIKit
2+
import WordPressShared
23

34
/// Card cell prompting the user to create their first post
45
final class DashboardFirstPostCardCell: DashboardEmptyPostsCardCell, BlogDashboardCardConfigurable {
@@ -48,7 +49,7 @@ class DashboardEmptyPostsCardCell: UICollectionViewCell, Reusable {
4849
private lazy var titleLabel: UILabel = {
4950
let titleLabel = UILabel()
5051
titleLabel.text = "Create your first post"
51-
titleLabel.font = WPStyleGuide.notoBoldFontForTextStyle(.title3)
52+
titleLabel.font = WPStyleGuide.serifFontForTextStyle(.title3, fontWeight: .semibold)
5253
titleLabel.adjustsFontForContentSizeCategory = true
5354
titleLabel.adjustsFontSizeToFitWidth = true
5455
titleLabel.minimumScaleFactor = 0.5

0 commit comments

Comments
 (0)