From 70dcaa5c353780d78a367e73bec2194e9d2d3e5e Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 18 Jan 2026 22:56:58 +0000 Subject: [PATCH] fix: match comment input styling to amount input in zap window Update MentionEditor styling to match Input component: - Change padding from py-2 to py-1 - Add responsive text sizing (text-base md:text-sm) - Add min-h-9 to match Input height This creates visual consistency between the amount and comment fields. --- src/components/ZapWindow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ZapWindow.tsx b/src/components/ZapWindow.tsx index 2723acc..e670b01 100644 --- a/src/components/ZapWindow.tsx +++ b/src/components/ZapWindow.tsx @@ -634,7 +634,7 @@ export function ZapWindow({ placeholder="Say something nice..." searchProfiles={searchProfiles} searchEmojis={searchEmojis} - className="rounded-md border border-input bg-background px-3 py-2" + className="rounded-md border border-input bg-background px-3 py-1 text-base md:text-sm min-h-9" /> )}