From cd4227fcb18c9e0c09dafa2c771ab62bca8e9d97 Mon Sep 17 00:00:00 2001 From: Tangem Date: Tue, 8 Jul 2025 14:16:12 +0500 Subject: [PATCH] Updated on 2026-08-14 --- .../nft/collections/ui/NFTCollectionsEmpty.kt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/features/nft/impl/src/main/kotlin/com/tangem/features/nft/collections/ui/NFTCollectionsEmpty.kt b/features/nft/impl/src/main/kotlin/com/tangem/features/nft/collections/ui/NFTCollectionsEmpty.kt index 7e2c62d33b..167988824f 100644 --- a/features/nft/impl/src/main/kotlin/com/tangem/features/nft/collections/ui/NFTCollectionsEmpty.kt +++ b/features/nft/impl/src/main/kotlin/com/tangem/features/nft/collections/ui/NFTCollectionsEmpty.kt @@ -52,14 +52,14 @@ internal fun NFTCollectionsEmpty(state: NFTCollectionsUM.Empty, modifier: Modifi color = TangemTheme.colors.text.secondary, textAlign = TextAlign.Center, ) - PrimaryButton( - modifier = Modifier - .padding(top = TangemTheme.dimens.spacing48) - .widthIn(min = TangemTheme.dimens.size158), - text = stringResourceSafe(R.string.nft_collections_receive), - onClick = state.onReceiveClick, - ) } + PrimaryButton( + modifier = Modifier + .fillMaxWidth() + .align(Alignment.BottomCenter), + text = stringResourceSafe(R.string.nft_collections_receive), + onClick = state.onReceiveClick, + ) } }