Skip to content

Commit

Permalink
feat: remove tooltip border
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Sep 12, 2024
1 parent cd3bc39 commit 9e770c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/src/components/ui/tooltip/styles.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export const tooltipStyle = {
content: [
"relative z-[101] border border-accent/10 bg-white px-2 py-1 text-foreground dark:bg-neutral-950",
"relative z-[101] bg-white px-2 py-1 text-foreground dark:bg-neutral-950",
"data-[state=closed]:animate-out data-[state=closed]:fade-out-0",
"rounded-lg text-sm",
"max-w-[75ch] select-text",
"drop-shadow data-[side=top]:shadow-tooltip-bottom data-[side=bottom]:shadow-tooltip-top dark:border-border",
"drop-shadow data-[side=top]:shadow-tooltip-bottom data-[side=bottom]:shadow-tooltip-top",
],
}

0 comments on commit 9e770c9

Please sign in to comment.