From 5f1a711c8cab9f86446212f5432af66c26e7a767 Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 13 Jul 2026 18:15:05 +0500 Subject: [PATCH] Updated on 2026-08-14 --- .../ui/TangemPayVirtualAccountDepositBottomSheet.kt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/ui/TangemPayVirtualAccountDepositBottomSheet.kt b/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/ui/TangemPayVirtualAccountDepositBottomSheet.kt index 4ef20b4232..5f28f8b685 100644 --- a/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/ui/TangemPayVirtualAccountDepositBottomSheet.kt +++ b/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/ui/TangemPayVirtualAccountDepositBottomSheet.kt @@ -5,8 +5,10 @@ import androidx.compose.foundation.Image import androidx.compose.foundation.background import androidx.compose.foundation.border import androidx.compose.foundation.layout.* +import androidx.compose.foundation.rememberScrollState import androidx.compose.foundation.shape.CircleShape import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.foundation.verticalScroll import androidx.compose.material3.Icon import androidx.compose.material3.Text import androidx.compose.runtime.Composable @@ -73,6 +75,7 @@ private fun DepositContent(state: TangemPayVirtualAccountDepositUM, modifier: Mo Column( modifier = modifier .fillMaxWidth() + .verticalScroll(rememberScrollState()) .padding(horizontal = TangemTheme.dimens2.x4) .padding(bottom = TangemTheme.dimens2.x4), horizontalAlignment = Alignment.CenterHorizontally, @@ -255,10 +258,10 @@ private fun UsdcIcon(modifier: Modifier = Modifier) { contentAlignment = Alignment.Center, ) { Icon( - modifier = Modifier.size(TangemTheme.dimens2.x4), + modifier = Modifier.size(TangemTheme.dimens2.x6), painter = painterResource(CoreUiR.drawable.ic_polygon_22), contentDescription = null, - tint = TangemTheme.colors3.icon.inverse, + tint = TangemTheme.colors3.icon.staticDark, ) } }