Skip to content

Commit

Permalink
fix: tooltip align, fixed seams
Browse files Browse the repository at this point in the history
  • Loading branch information
Alinochka07 committed Apr 23, 2024
1 parent 5341bfa commit e88dc80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 100 deletions.
100 changes: 2 additions & 98 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/common/styles/ant.less
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
max-width: 100%;
}

&.ant-tooltip-arrow {
.ant-tooltip-arrow {
margin-top: 6px;
}

Expand Down
2 changes: 1 addition & 1 deletion src/features/onboarding/components/OnboardingTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const OnboardingTooltip: FC<Props> = ({ children }) => {
return (
<>
{isOnboardingOpen ? (
<Tooltip placement="top" title="Available only after completing the onboarding">
<Tooltip placement="top" title="Available only after completing the onboarding" align={{ offset: [0, -20] }}>
{children}
</Tooltip>
) : (
Expand Down

0 comments on commit e88dc80

Please sign in to comment.