Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface RiTooltipContentProps {

export const HoverContent = ({ title, content }: RiTooltipContentProps) => (
<Col>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add some gap to the Col, it seems a bit too tight in the tooltip

Copy link
Collaborator Author

@dantovska dantovska Aug 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done. Attached the new screenshot. I intentionally added a small gap, because if I add a medium sized one (or bigger), then the content items also seem too tight to each other and when it is one item, it seems far from the title 😄

{title && <Title size="S">{title}</Title>}
{title && <Title size="XS">{title}</Title>}
{content}
</Col>
)
Loading