@alveole/theme 0.14.0 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -71,8 +71,8 @@ export declare const CustomTypography: {
|
|
|
71
71
|
/** Font size: 40/48 */
|
|
72
72
|
readonly 'H1 - XL': {
|
|
73
73
|
readonly fontFamily: "Barlow-Light" | "Barlow-Regular" | "Barlow-Medium" | "Barlow-SemiBold" | "Barlow-Bold" | "Inter-Light" | "Inter-Regular" | "Inter-Medium" | "Inter-SemiBold" | "Inter-Bold";
|
|
74
|
-
readonly fontSize:
|
|
75
|
-
readonly lineHeight: 48 |
|
|
74
|
+
readonly fontSize: 32 | 40;
|
|
75
|
+
readonly lineHeight: 48 | 40;
|
|
76
76
|
readonly letterSpacing: 0;
|
|
77
77
|
};
|
|
78
78
|
};
|
|
@@ -73,8 +73,8 @@ export const CustomTypography = {
|
|
|
73
73
|
/** Font size: 40/48 */
|
|
74
74
|
'H1 - XL': {
|
|
75
75
|
fontFamily: Fonts['Barlow-SemiBold'],
|
|
76
|
-
fontSize: Platform.OS === 'web' ?
|
|
77
|
-
lineHeight: Platform.OS === 'web' ?
|
|
76
|
+
fontSize: Platform.OS === 'web' ? 40 : 32,
|
|
77
|
+
lineHeight: Platform.OS === 'web' ? 48 : 40,
|
|
78
78
|
letterSpacing: 0,
|
|
79
79
|
},
|
|
80
80
|
},
|