Skip to content

Commit 653fb88

Browse files
ValentinHSaraVieira
authored andcommitted
Fix Like icon alignment in Project Info tab (codesandbox#1927)
1 parent c1bc28a commit 653fb88

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/pages/common/LikeHeart

1 file changed

+1
-1
lines changed

packages/app/src/app/pages/common/LikeHeart/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Sandbox } from '@codesandbox/common/lib/types';
1313

1414
const MaybeTooltip = ({ loggedIn, disableTooltip, title, children }) =>
1515
loggedIn && !disableTooltip ? (
16-
<Tooltip content={title} children={children} />
16+
<Tooltip content={title} children={children} style={{ display: 'flex' }} />
1717
) : (
1818
children
1919
);

0 commit comments

Comments
 (0)