Skip to content

Commit

Permalink
Edited tooltip size
Browse files Browse the repository at this point in the history
  • Loading branch information
olehkhalin committed Aug 11, 2022
1 parent c8f8d56 commit 3ddca91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/elements/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Tooltip: FC<TooltipProps> = ({
}
interactive={interactive ?? size === "large"}
appendTo={overflowElement ?? document.body}
maxWidth={maxWidth ?? (size === "large" ? "18rem" : "20rem")}
maxWidth={maxWidth ?? "18rem"}
placement={placement ?? (size === "large" ? "right-start" : "bottom")}
hideOnClick={hideOnClick}
className="pointer-events-auto"
Expand Down

0 comments on commit 3ddca91

Please sign in to comment.