Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 548f1ec

Browse files
committed
fix(tooltip): use bezier curve for transitions on tooltip
1 parent 60d9307 commit 548f1ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/c-tooltip/src/tooltip.transition.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ export const TooltipVariants: MotionVariants = {
55
initial: { scale: 0.95, opacity: 0 },
66
enter: {
77
scale: 1,
8-
// transition: TransitionDefaults.enter,
98
transition: {
109
opacity: { easings: "easeOut", duration: 200 },
11-
scale: { duration: 200, ease: [0.175, 0.885, 0.4, 1.1] },
10+
scale: { duration: 200, easings: [0.175, 0.885, 0.4, 1.1] },
1211
},
1312
opacity: 1,
1413
},

0 commit comments

Comments
 (0)