Skip to content

Commit

Permalink
fix(suite): Fix border in Tooltip (#15516)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvaclavik authored Nov 22, 2024
1 parent 1dd1137 commit 970c1b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const TooltipArrow = ({ ref, context }: ArrowProps) => (
fill={palette.darkGray300}
stroke={palette.darkGray100}
staticOffset={TOOLTIP_BORDER_RADIUS}
strokeWidth={1}
strokeWidth={0}
tipRadius={1}
style={{
transform: 'translateY(-2px)',
Expand Down
1 change: 0 additions & 1 deletion packages/components/src/components/Tooltip/TooltipBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ const TooltipContainerStyled = styled.div<TooltipContainerStyledProps>`
color: ${({ theme }) => theme.textDefault};
border-radius: ${TOOLTIP_BORDER_RADIUS};
text-align: left;
border: solid 1.5px ${palette.darkGray100};
margin: ${spacingsPx.xxxs};
max-width: ${props => props.$maxWidth}px;
Expand Down

0 comments on commit 970c1b6

Please sign in to comment.