Skip to content

Commit 38eeb8f

Browse files
committed
Remove "help" cursor from state badge
Update tooltip corner to 5px Update package-lock with react-tether
1 parent 30c5aa1 commit 38eeb8f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

airbyte-webapp/package-lock.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const ReleaseStageBadge: React.FC<ReleaseStageBadgeProps> = ({ stage, sma
4141
);
4242

4343
return tooltip ? (
44-
<ToolTip control={badge} cursor="help">
44+
<ToolTip control={badge}>
4545
<FormattedMessage id={`connector.releaseStage.${stage}.description`} />
4646
</ToolTip>
4747
) : (

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@
1212

1313
padding: variables.$spacing-md;
1414
margin: variables.$spacing-sm;
15-
border-radius: 4px;
15+
border-radius: 5px;
1616
min-width: 100px;
1717
max-width: 380px;
1818
z-index: variables.$z-tooltip;
19-
2019
box-shadow: 0px 2px 4px rgba(colors.$dark-blue, 0.12);
2120
background: rgba(colors.$dark-blue, 0.9);
2221
color: colors.$white;

0 commit comments

Comments
 (0)