From 1d75f13d4eede3fa9859314315bbe832cf441f16 Mon Sep 17 00:00:00 2001 From: Tangem Date: Fri, 15 Sep 2023 17:25:31 +0800 Subject: [PATCH] Updated on 2026-08-14 --- .../presentation/wallet/ui/components/common/WalletCard.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/ui/components/common/WalletCard.kt b/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/ui/components/common/WalletCard.kt index fa5c096897..0f3741535a 100644 --- a/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/ui/components/common/WalletCard.kt +++ b/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/ui/components/common/WalletCard.kt @@ -258,7 +258,7 @@ private fun TitleText(title: String) { Text( text = title, color = TangemTheme.colors.text.tertiary, - style = TangemTheme.typography.body2, + style = TangemTheme.typography.button, maxLines = 1, ) } @@ -334,7 +334,7 @@ private fun AdditionalInfo(state: WalletCardState, modifier: Modifier = Modifier private fun AdditionalInfoText(text: TextReference) { Text( text = text.resolveReference(), - color = TangemTheme.colors.text.disabled, + color = TangemTheme.colors.text.tertiary, style = TangemTheme.typography.caption, ) }