diff --git a/apps/ios/Shared/Views/Badges/BadgesPayView.swift b/apps/ios/Shared/Views/Badges/BadgesPayView.swift index 7a20688ffe..5cd2c51723 100644 --- a/apps/ios/Shared/Views/Badges/BadgesPayView.swift +++ b/apps/ios/Shared/Views/Badges/BadgesPayView.swift @@ -145,7 +145,7 @@ struct BadgesPayView: View { .font(.body) if let percent = savingsPercent(period) { Text("Save \(percent)%") - .font(.caption) + .font(.footnote) .foregroundColor(isSelected ? theme.colors.primary : theme.colors.secondary) } } diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesPayView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesPayView.kt index 03cb478f84..0fd2ac5198 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesPayView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/badges/BadgesPayView.kt @@ -165,7 +165,7 @@ private fun PeriodCard(level: BadgeLevel, period: BadgePeriod, selectedPeriod: B Text( // the percent sign is in the argument, not the resource: adjustFormatting rejects %% stringResource(MR.strings.badges_savings).format("$percent%"), - style = MaterialTheme.typography.caption, + style = MaterialTheme.typography.body2, color = if (isSelected) MaterialTheme.colors.primary else MaterialTheme.colors.secondary, textAlign = TextAlign.Center )