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

Commit e3f9772

Browse files
EladBezalelmmalerba
authored andcommitted
polish(tooltip): change transition duration to 150ms (#10477)
- according the spec show and hide duration should be 150ms fixes #10467
1 parent 3b60b88 commit e3f9772

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/tooltip/tooltip.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,13 @@ $tooltip-max-width: 32px !default;
5555
}
5656
&.md-show {
5757
transition: $swift-ease-out;
58+
transition-duration: 150ms;
5859
transform: scale(1);
5960
opacity: 0.9;
6061
}
6162
&.md-hide {
6263
transition: $swift-ease-in;
63-
transition-duration: .1s;
64+
transition-duration: 150ms;
6465
transform: scale(0);
6566
opacity: 0;
6667
}

0 commit comments

Comments
 (0)