fix: add fallback for when not enabled (#28142)

This commit is contained in:
Liam DeBeasi
2023-09-11 08:53:16 -04:00
committed by GitHub
parent c55c492b61
commit 98de18513e

View File

@@ -38,7 +38,10 @@ html {
*/
@supports (-webkit-touch-callout: none) {
html {
font: var(--ion-dynamic-font);
/**
* Includes fallback if Dynamic Type is not enabled.
*/
font: var(--ion-dynamic-font, 16px var(--ion-font-family));
}
}