From e19582201f4d4819610008d3ff9f1e615995ca81 Mon Sep 17 00:00:00 2001 From: Roberto Musso Date: Thu, 26 Feb 2026 16:36:13 +0100 Subject: [PATCH] feat: enhance AIChatPanel UI with improved button styles and layout adjustments --- src/renderer/components/ai/AIChatPanel.tsx | 49 +++++++++------------- 1 file changed, 19 insertions(+), 30 deletions(-) diff --git a/src/renderer/components/ai/AIChatPanel.tsx b/src/renderer/components/ai/AIChatPanel.tsx index ae57c10..c168a03 100644 --- a/src/renderer/components/ai/AIChatPanel.tsx +++ b/src/renderer/components/ai/AIChatPanel.tsx @@ -308,15 +308,15 @@ export function AIChatPanel({ onSend={handleSend} isHomePage={isHomePage} /> -
+
{SUGGESTION_CHIPS.map((chip) => ( ))} @@ -328,7 +328,7 @@ export function AIChatPanel({ {/* Home page with messages: brief stays, then messages */} {isHomePage && hasMessages && ( -
+
{/* Brief persists */} {dailyBrief && ( @@ -397,7 +397,7 @@ export function AIChatPanel({ {/* Non-home messages */} {!isHomePage && hasMessages && ( -
+
{messages.map((msg) => { if (msg.role === 'user') { @@ -459,8 +459,8 @@ export function AIChatPanel({ {/* Fixed input — pinned to the bottom (hidden on home initial state) */} {!(isHomePage && !hasMessages) && ( -
-
+
+
-