Skip to content

Commit

Permalink
fix font ligatures on web
Browse files Browse the repository at this point in the history
  • Loading branch information
Nek-12 committed Feb 8, 2025
1 parent f995677 commit 7240af0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private val Montserrat
val FontFamily.Companion.Montserrat @Composable get() = pro.respawn.meetingcost.ui.theme.Montserrat
val FontFamily.Companion.Comfortaa @Composable get() = pro.respawn.meetingcost.ui.theme.Comfortaa

private const val FontFeatures = "dlig, liga, kern, zero, locl, size"
private val FontFeatures = if (BuildFlags.platform == Platform.Web) null else "dlig, liga, kern, zero, locl, size"

@Composable
internal fun rememberAppTypography(): Typography {
Expand Down

0 comments on commit 7240af0

Please sign in to comment.