Skip to content

Commit 099a9f8

Browse files
committed
fix(tooltip): make tooltip border of 2px width
1 parent 86a0990 commit 099a9f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tooltip/Tooltip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Tip = styled.span`
1212
transform: translate(-50%, 100%);
1313
display: ${props => (props.show ? 'block' : 'none')};
1414
padding: 4px;
15-
border: 1px solid ${({ theme }) => theme.borderDarkest};
15+
border: 2px solid ${({ theme }) => theme.borderDarkest};
1616
background: ${({ theme }) => theme.tooltip};
1717
box-shadow: ${shadow};
1818
text-align: center;

0 commit comments

Comments
 (0)