Skip to content

Commit

Permalink
Merge branch 'main' into dev/strict-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
alextaing authored Oct 31, 2023
2 parents 868ece3 + e877d68 commit 6142582
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 9 additions & 3 deletions packages/studio-ui/src/components/common/TooltipIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,18 @@ export default function TooltipIcon({ content }: TooltipIconProps) {

return (
<div>
<Info id={tooltipId} className="ml-3 pb-1" data-testid="prop-tooltip" />
<Info
id={tooltipId}
className="ml-1 pb-1 mr-4"
data-testid="prop-tooltip"
/>
<Tooltip
className="bg-black z-20"
className="bg-black z-20 max-w-[23.5%]"
anchorId={tooltipId}
content={content}
place="left"
place="top"
closeOnScroll={true}
positionStrategy="fixed"
/>
</div>
);
Expand Down

0 comments on commit 6142582

Please sign in to comment.