styles: lightened dark mode borders (#822)

This commit is contained in:
Nahiyan Khan
2025-01-27 18:46:50 -05:00
committed by GitHub
parent c13a60dfae
commit 2617d207a9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export default function GooseMessage({ message, metadata, messages, append }: Go
)}
{message.toolInvocations && (
<div className="goose-message-tool bg-bgApp border border-borderSubtle rounded-b-2xl px-4 pt-4 pb-2 mt-1">
<div className="goose-message-tool bg-bgApp border border-borderSubtle dark:border-gray-700 rounded-b-2xl px-4 pt-4 pb-2 mt-1">
<ToolInvocations toolInvocations={message.toolInvocations} />
</div>
)}
@@ -53,7 +53,7 @@ function ToolCall({ call }: ToolCallProps) {
{call.args && <ToolCallArguments args={call.args} />}
<div className="self-stretch h-px my-[10px] -mx-4 bg-borderSubtle" />
<div className="self-stretch h-px my-[10px] -mx-4 bg-borderSubtle dark:bg-gray-700" />
</div>
);
}