Skip to content

Commit 30c5aa1

Browse files
committed
Add minor tweaks to Tooltip component
1 parent 593a746 commit 30c5aa1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

airbyte-webapp/src/components/ToolTip/ToolTip.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
line-height: initial;
1212

1313
padding: variables.$spacing-md;
14-
margin: variables.$spacing-md;
14+
margin: variables.$spacing-sm;
1515
border-radius: 4px;
1616
min-width: 100px;
1717
max-width: 380px;

airbyte-webapp/src/components/ToolTip/ToolTip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface ToolTipProps {
1717
align?: ToolTipAlignment;
1818
}
1919

20-
const MOUSE_OUT_TIMEOUT_MS: Readonly<number> = 250;
20+
const MOUSE_OUT_TIMEOUT_MS: Readonly<number> = 50;
2121

2222
const TETHER_ATTACHMENT_BY_ALIGNMENT: Readonly<Record<ToolTipAlignment, string>> = {
2323
top: "bottom center",

0 commit comments

Comments
 (0)