From 8a349315de5f79cbae5149733c6b447fcce76fa3 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Mon, 16 May 2022 18:51:27 -0400 Subject: [PATCH] Make card tags a lighter gray --- web/components/contract/contract-details.tsx | 6 ++++-- web/components/tags-list.tsx | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/web/components/contract/contract-details.tsx b/web/components/contract/contract-details.tsx index f83e5496..17b44795 100644 --- a/web/components/contract/contract-details.tsx +++ b/web/components/contract/contract-details.tsx @@ -62,8 +62,10 @@ export function AbbrContractDetails(props: { /> - - {categories.length > 0 && } + + {categories.length > 0 && ( + + )} {showHotVolume ? ( diff --git a/web/components/tags-list.tsx b/web/components/tags-list.tsx index 703e060d..5eec05ce 100644 --- a/web/components/tags-list.tsx +++ b/web/components/tags-list.tsx @@ -11,7 +11,7 @@ function Hashtag(props: { tag: string; noLink?: boolean }) { const body = (
- #{category ?? tag} + #{category ?? tag}
) @@ -33,7 +33,7 @@ export function TagsList(props: { const { tags, className, noLink, noLabel, label } = props return ( - {!noLabel &&
{label || 'Tags'}
} + {!noLabel &&
{label || 'Tags'}
} {tags.map((tag) => (