Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-04 10:20:34 +04:00
parent 5aadb8e2a8
commit a7dc87ec2b
3 changed files with 3 additions and 1 deletions

View file

@ -72,7 +72,7 @@ internal class DefaultYieldSupplyActiveComponent @AssistedInject constructor(
Column(
modifier = Modifier
.background(TangemTheme.colors.background.secondary)
.background(TangemTheme.colors.background.tertiary)
.fillMaxSize()
.systemBarsPadding(),
) {

View file

@ -25,6 +25,7 @@ internal fun YieldSupplyActiveTitle(onCloseClick: () -> Unit) {
Icon(
imageVector = ImageVector.vectorResource(R.drawable.ic_close_24),
contentDescription = null,
tint = TangemTheme.colors.icon.primary1,
modifier = Modifier
.padding(16.dp)
.clickable(

View file

@ -101,6 +101,7 @@ private fun ColumnScope.Content(yieldSupplyPromoUM: YieldSupplyPromoUM, clickInt
Text(
text = yieldSupplyPromoUM.title.resolveReference(),
style = TangemTheme.typography.h2,
textAlign = TextAlign.Center,
color = TangemTheme.colors.text.primary1,
)
SpacerH8()