update tool display bubbles to have cursor-dfeault

This commit is contained in:
pablodanswer
2024-08-06 12:35:07 -07:00
committed by Chris Weaver
parent 7f7452dc98
commit 3bc2cf9946

View File

@@ -71,8 +71,7 @@ export function AssistantTools({
w-fit
flex
items-center
${hovered ? "bg-background-300" : list ? "bg-background-125" : "bg-background-100"}
cursor-pointer`}
${hovered ? "bg-background-300" : list ? "bg-background-125" : "bg-background-100"}`}
>
<div className="flex gap-x-1">
<FiSearch key={ind} className="ml-1 h-3 w-3 my-auto" />
@@ -92,8 +91,7 @@ export function AssistantTools({
border-border
w-fit
flex
${hovered ? "bg-background-300" : list ? "bg-background-125" : "bg-background-100"}
cursor-pointer`}
${hovered ? "bg-background-300" : list ? "bg-background-125" : "bg-background-100"}`}
>
<div className="flex items-center gap-x-1">
<FiImage
@@ -117,8 +115,7 @@ export function AssistantTools({
w-fit
flex
items-center
${hovered ? "bg-background-300" : list ? "bg-background-125" : "bg-background-100"}
cursor-pointer`}
${hovered ? "bg-background-300" : list ? "bg-background-125" : "bg-background-100"}`}
>
<div className="flex gap-x-1">{tool.name}</div>
</div>