fix(zap): shrink cashu chip logo further (15→13dp)

Second pass on the cashu logo size — it still read large next to the Material
symbol rails; drop to 13dp and scale the reload "+" badge to 9dp to match.

https://claude.ai/code/session_01HNE2z7CSYZ2G8KwC5fziJn
This commit is contained in:
Claude
2026-05-29 22:18:31 +00:00
parent c801b8e580
commit 4ffb69c459
@@ -2258,7 +2258,7 @@ private fun ZapRailIcon(
Material3Icon(
imageVector = CustomHashTagIcons.Cashu,
contentDescription = stringRes(R.string.nutzap),
modifier = Modifier.size(15.dp),
modifier = Modifier.size(13.dp),
tint = if (colored) Color.Unspecified else mono,
)
ZapRail.RELOAD ->
@@ -2268,13 +2268,13 @@ private fun ZapRailIcon(
Material3Icon(
imageVector = CustomHashTagIcons.Cashu,
contentDescription = stringRes(R.string.reload_mint_title),
modifier = Modifier.size(15.dp).alpha(0.5f),
modifier = Modifier.size(13.dp).alpha(0.5f),
tint = if (colored) Color.Unspecified else mono,
)
Icon(
symbol = MaterialSymbols.AddCircle,
contentDescription = null,
modifier = Modifier.size(10.dp),
modifier = Modifier.size(9.dp),
tint = if (colored) MaterialTheme.colorScheme.primary else mono,
)
}