From 150bc6aa2cced60e190669104b99cd00b1abff68 Mon Sep 17 00:00:00 2001 From: spencrmartin Date: Wed, 24 Sep 2025 16:24:00 -0400 Subject: [PATCH] refine: Clean up action button design and fix padding issues - Remove small circle indicator from Action icon for cleaner plus symbol - Fix button padding conflicts by using !px-0 to override default padding: - Action button: Remove left/right padding for tighter spacing - Attach button: Remove left/right padding for tighter spacing - Ensure buttons render without horizontal padding as intended UI improvements: - Cleaner, more minimal plus icon design - Consistent compact button spacing - Better visual alignment in bottom bar --- ui/desktop/src/components/ChatInput.tsx | 4 ++-- ui/desktop/src/components/icons/Action.tsx | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ui/desktop/src/components/ChatInput.tsx b/ui/desktop/src/components/ChatInput.tsx index a79327fbaa..4d6d86bdf8 100644 --- a/ui/desktop/src/components/ChatInput.tsx +++ b/ui/desktop/src/components/ChatInput.tsx @@ -1676,7 +1676,7 @@ export default function ChatInput({ onClick={handleActionButtonClick} variant="ghost" size="sm" - className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors px-0" + className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors !px-0" > Actions @@ -1694,7 +1694,7 @@ export default function ChatInput({ onClick={handleFileSelect} variant="ghost" size="sm" - className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors px-0" + className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors !px-0" > Attach diff --git a/ui/desktop/src/components/icons/Action.tsx b/ui/desktop/src/components/icons/Action.tsx index 2a770dbe82..2ccda29292 100644 --- a/ui/desktop/src/components/icons/Action.tsx +++ b/ui/desktop/src/components/icons/Action.tsx @@ -21,8 +21,6 @@ const Action: React.FC = ({ className = '', size = 16 }) => { {/* Plus symbol */} - {/* Action indicator - small circle at bottom right */} - ); };