Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GithubJobs/Helpers/ViewComponents/CustomFooterView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class CustomFooterView: UIView {
label.textAlignment = .center
label.minimumScaleFactor = 0.5
label.adjustsFontSizeToFitWidth = true
label.font = FontHelper.dynamic(.body)
label.font = FontHelper.Dynamic.body
label.adjustsFontForContentSizeCategory = true
label.translatesAutoresizingMaskIntoConstraints = false
return label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ final class JobDetailHeaderView: UIView {
label.setContentHuggingPriority(.required, for: .vertical)
label.setContentCompressionResistancePriority(.required, for: .vertical)
label.numberOfLines = 0
label.font = FontHelper.dynamic(.body)
label.font = FontHelper.Dynamic.body
label.adjustsFontForContentSizeCategory = true
label.translatesAutoresizingMaskIntoConstraints = false
return label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ final class JobDetailSectionView: UIView {
label.textAlignment = .center
label.textColor = .black
label.backgroundColor = .systemTeal
label.font = FontHelper.dynamic(.body)
label.font = FontHelper.Dynamic.body
label.adjustsFontForContentSizeCategory = true

return label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ final class ThemeSelectionSectionHeaderView: UICollectionReusableView {
private lazy var titleLabel: UILabel = {
let label = UILabel()
label.textColor = .systemGray
label.font = .preferredFont(forTextStyle: .footnote)
label.font = FontHelper.Dynamic.footnote

label.translatesAutoresizingMaskIntoConstraints = false

Expand Down