Skip to content

Commit

Permalink
feat: use secondary color for category counts
Browse files Browse the repository at this point in the history
  • Loading branch information
aswanson-nr committed Dec 30, 2021
1 parent 7077523 commit f531037
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/pages/instant-observability.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,13 @@ const QuickstartsPage = ({ data, location }) => {
: 'none'};
`}
>
{`${displayName} (${count})`}
{`${displayName}`}
<span
css={css`
color: var(--secondary-text-color);
padding-left: 0.25rem;
`}
>{`(${count})`}</span>
</Button>
))}
</FormControl>
Expand Down

0 comments on commit f531037

Please sign in to comment.