From 6c6996fa33bb2c434fa445af83aac8af311fe92b Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 8 Aug 2023 14:51:27 -0500 Subject: [PATCH] Title Large mobile has a different Font that for Desktop Signed-off-by: Matt Bruce --- VDS/Typography/Typogprahy+Styles.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Typography/Typogprahy+Styles.swift b/VDS/Typography/Typogprahy+Styles.swift index e2d906fe..05a6eb64 100644 --- a/VDS/Typography/Typogprahy+Styles.swift +++ b/VDS/Typography/Typogprahy+Styles.swift @@ -108,7 +108,7 @@ extension TextStyle { lineHeight: UIDevice.isIPad ? VDSTypography.lineHeightTitle36 : VDSTypography.lineHeightTitle28) public static let titleLarge = TextStyle(rawValue: "titleLarge", - fontFace: .dsLight, + fontFace: UIDevice.isIPad ? .dsLight : .edsRegular, pointSize: UIDevice.isIPad ? VDSTypography.fontSizeTitle32 : VDSTypography.fontSizeTitle24, lineHeight: UIDevice.isIPad ? VDSTypography.lineHeightTitle36 : VDSTypography.lineHeightTitle28, letterSpacing: UIDevice.isIPad ? VDSTypography.letterSpacingSemiWide : 0)