Build 24: equal-size buttons in the release-username confirm gate

"Keep it" used big_action_on_card (56px / 17px) while "Release it" used
big_action_on_card_ink (44px / 15px), so the two confirm buttons were
visibly different sizes. Both now render with big_action_on_card_ink at the
intended 44px (matching the layout's scope), differing only in text color.
This commit is contained in:
Claude
2026-06-11 23:41:38 -04:00
parent 95403516d5
commit 68d72fa853
+3 -1
View File
@@ -2452,7 +2452,9 @@ impl GoblinWalletView {
Vec2::new(half, 44.0),
)),
|ui| {
if w::big_action_on_card(ui, "Keep it").clicked() {
if w::big_action_on_card_ink(ui, "Keep it", t.surface_text)
.clicked()
{
claim.confirm_release = false;
}
},