Skip to content

Commit

Permalink
Don't slide tooltip on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
sipec committed Dec 10, 2024
1 parent bdd1ead commit c1cc69f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/components/widgets/tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ export function Tooltip(props: {
{/* conditionally render tooltip and fade in/out */}
<Transition
show={open}
enter="transition ease-out duration-50"
enter="transition-opacity ease-out duration-50"
enterFrom="opacity-0"
enterTo="opacity-100"
leave={noFade ? '' : 'transition ease-in duration-150'}
leave={noFade ? '' : 'transition-opacity ease-in duration-150'}
leaveFrom="opacity-100"
leaveTo="opacity-0"
// div attributes
Expand Down

0 comments on commit c1cc69f

Please sign in to comment.