From 159d52a71623033ca505e34e910086b853671455 Mon Sep 17 00:00:00 2001 From: Mathew Pareles Date: Fri, 21 Mar 2025 19:21:13 -0700 Subject: [PATCH] styles --- .../void/browser/react/src/sidebar-tsx/SidebarChat.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx index c00cb058..f7104242 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx @@ -303,9 +303,9 @@ export const VoidChatArea: React.FC = ({ className={` gap-x-1 flex flex-col p-2 relative input text-left shrink-0 - transition-all duration-200 rounded-md - bg-vscode-input-bg + bg-void-bg-1 + transition-all duration-200 border border-void-border-3 focus-within:border-void-border-1 hover:border-void-border-1 max-h-[80vh] overflow-y-auto ${className} @@ -929,7 +929,7 @@ const UserMessageComponent = ({ chatMessage, messageIdx, isCommitted }: { chatMe className={` text-left rounded-lg max-w-full ${mode === 'edit' ? '' - : mode === 'display' ? 'p-2 flex flex-col gap-1 bg-void-bg-1 text-void-fg-1 overflow-x-auto cursor-pointer' : '' + : mode === 'display' ? 'p-2 flex flex-col bg-void-bg-1 text-void-fg-1 overflow-x-auto cursor-pointer' : '' } `} onClick={() => { if (mode === 'display') { onOpenEdit() } }}