From 4ffb69c459081ad8714ad1f4878caafa86181eec Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 29 May 2026 22:18:31 +0000 Subject: [PATCH] =?UTF-8?q?fix(zap):=20shrink=20cashu=20chip=20logo=20furt?= =?UTF-8?q?her=20(15=E2=86=9213dp)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .../java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt index 8989b52e8b..beae267085 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt @@ -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, ) }