Skip to content

Commit

Permalink
fix(nav): fix tooltip vertical alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Rani committed Feb 9, 2021
1 parent 1ea504a commit d1ef25c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/modules/core/src/application/nav/NavItem.tsx
Expand Up @@ -35,9 +35,9 @@ export const NavItem = ({ app, dataSource, isActive }: INavItemProps) => {
{iconName &&
(!isExpanded ? (
<Tooltip value={dataSource.label} placement="right">
<span>
<div>
<Icon className="nav-icon" name={iconName} size="medium" color={isActive ? 'primary' : 'accent'} />
</span>
</div>
</Tooltip>
) : (
<Icon
Expand Down

0 comments on commit d1ef25c

Please sign in to comment.