Skip to content

Commit 54d4672

Browse files
committed
Fix tooltip texts.
1 parent 3c2ad97 commit 54d4672

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/button/iconButton.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Button } from "./button"
77

88
const CustomTooltipContent = ({ content }) => (
99
<Flex padding={[1.5, 2]} margin={[2]} background="tooltip" round={1} alignSelf="start">
10-
<TextSmall color="bright">{content}</TextSmall>
10+
<TextSmall color="tooltipText">{content}</TextSmall>
1111
</Flex>
1212
)
1313

src/components/drops/container.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Container = forwardRef(
1515
margin={margin}
1616
>
1717
<Flex background={background} padding={[1, 2]} round column {...rest}>
18-
{typeof children === "string" ? <Text color="bright">{children}</Text> : children}
18+
{typeof children === "string" ? <Text color="tooltipText">{children}</Text> : children}
1919
</Flex>
2020
{align && (
2121
<Icon

0 commit comments

Comments
 (0)