From cd38dcd0a63cb8ca3efbbb18c3c4c25ea7ab7d2f Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Sat, 15 Aug 2026 01:03:08 +0400 Subject: [PATCH] wip --- apps/ios/Shared/Views/Badges/BadgesPayView.swift | 2 +- .../kotlin/chat/simplex/common/views/badges/BadgesPayView.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 )