Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-08 15:59:46 +03:00
parent a61526b121
commit bd264ada23
2 changed files with 2 additions and 1 deletions

View file

@ -39,7 +39,7 @@ internal fun FeeBlock(feeState: SendStates.FeeState, isClickDisabled: Boolean, o
) {
Text(
text = stringResource(R.string.common_network_fee_title),
style = TangemTheme.typography.caption2,
style = TangemTheme.typography.subtitle1,
color = TangemTheme.colors.text.secondary,
)

View file

@ -28,6 +28,7 @@ import com.tangem.feature.swap.presentation.R
fun SwapSuccessScreen(state: SwapSuccessStateHolder, onBack: () -> Unit) {
Scaffold(
modifier = Modifier.systemBarsPadding(),
backgroundColor = TangemTheme.colors.background.tertiary,
content = { padding ->
SwapSuccessScreenContent(padding = padding, state = state)
},