Skip to content

Commit bd7331b

Browse files
committed
fix(widget card): title color
1 parent 31f0195 commit bd7331b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/pages/Campaign/widgets/WidgetCard.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
MD,
77
Separator,
88
SM,
9+
theme as ugTheme,
910
} from '@appquality/unguess-design-system';
1011
import { ReactComponent as InfoStrokeIcon } from '@zendeskgarden/svg-icons/src/16/info-stroke.svg';
1112
import React from 'react';
@@ -27,7 +28,9 @@ const WidgetCardHeader = ({
2728
}) => (
2829
<>
2930
<SpecialCard.Meta justifyContent="space-between">
30-
<SpecialCard.Header.Title>{children}</SpecialCard.Header.Title>
31+
<SpecialCard.Header.Title color={ugTheme.palette.grey[800]}>
32+
{children}
33+
</SpecialCard.Header.Title>
3134
<Tooltip content={tooltipContent}>
3235
<IconButton>
3336
<InfoStrokeIcon />

0 commit comments

Comments
 (0)