Skip to content

Commit 2803d68

Browse files
committed
Adjust custom Tooltip styling to match designs
1 parent 7aef756 commit 2803d68

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/components/tooltip/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ const TooltipContentNoArrow = ({
1111
...props
1212
}: React.ComponentProps<typeof TooltipContent>) => {
1313
return (
14-
<TooltipContent className="[&>span]:hidden" sideOffset={sideOffset} {...props}>
14+
<TooltipContent
15+
className="[&>span]:hidden text-pretty bg-base-popover border text-popover-foreground shadow-[0px_2px_4px_-1px_rgba(0,0,0,0.06)] shadow-md"
16+
sideOffset={sideOffset}
17+
{...props}
18+
>
1519
{children}
1620
</TooltipContent>
1721
)

0 commit comments

Comments
 (0)