Skip to content

Commit f0764d1

Browse files
committed
Fix text color
1 parent a2e39ca commit f0764d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/shared/components/Tile/Badge.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const StatsBadge = styled.div`
148148
font-weight: 500;
149149
font-size: 16px;
150150
line-height: 24px;
151-
color: #525252;
151+
color: #323232;
152152
153153
a,
154154
a:link,
@@ -183,9 +183,9 @@ const StreamStatsBadge = ({ streamIds, ...props }: StreamStatsBadgeProps) => {
183183
<BadgeContainer {...props}>
184184
<StatsBadge>
185185
<span>
186-
{streamIds.length} {streamIds.length === 1 ? 'stream' : 'streams'}
186+
{streamIds.length} {streamIds.length === 1 ? 'Stream' : 'Streams'}
187187
</span>
188-
<span>{formattedMsgRate} msg/s</span>
188+
<span>{formattedMsgRate} Msg/s</span>
189189
</StatsBadge>
190190
</BadgeContainer>
191191
)

0 commit comments

Comments
 (0)