Skip to content

Commit 6decd47

Browse files
committed
fix: csv import and export message colors
1 parent 580654f commit 6decd47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/postgres-new/components/tools/csv-export.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function CsvExport({ toolInvocation }: CsvExportProps) {
2525
<CodeAccordion title="Executed SQL" language="sql" code={toolInvocation.args.sql} />
2626
<m.div
2727
layoutId={toolInvocation.toolCallId}
28-
className="self-start px-5 py-2.5 text-base rounded-full bg-green-300 flex gap-2 items-center text-lighter italic"
28+
className="self-start px-5 py-2.5 text-base rounded-full bg-border flex gap-2 items-center text-lighter italic"
2929
style={{
3030
// same value as tailwind, used to keep constant radius during framer animation
3131
// see: https://www.framer.com/motion/layout-animations/##scale-correction

apps/postgres-new/components/tools/csv-request.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default function CsvRequest({ toolInvocation }: CsvRequestProps) {
2929
return (
3030
<m.div
3131
layoutId={toolInvocation.toolCallId}
32-
className="self-end px-5 py-2.5 text-base rounded-full bg-blue-300 flex gap-2 items-center text-lighter italic"
32+
className="self-end px-5 py-2.5 text-base rounded-full bg-border flex gap-2 items-center text-lighter italic"
3333
style={{
3434
// same value as tailwind, used to keep constant radius during framer animation
3535
// see: https://www.framer.com/motion/layout-animations/##scale-correction

0 commit comments

Comments
 (0)