From 37d768d990a458e3bd6340703f3b1c1a6355d0c0 Mon Sep 17 00:00:00 2001 From: kemuru <102478601+kemuru@users.noreply.github.com> Date: Thu, 19 Dec 2024 21:03:24 +0100 Subject: [PATCH] chore: nitpick in evidence cards --- web/src/components/EvidenceCard.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/src/components/EvidenceCard.tsx b/web/src/components/EvidenceCard.tsx index a455a3ece..0a328b29d 100644 --- a/web/src/components/EvidenceCard.tsx +++ b/web/src/components/EvidenceCard.tsx @@ -57,11 +57,12 @@ const IndexAndName = styled.div` display: flex; flex-direction: row; align-items: center; - gap: 6px; + gap: 5px; `; const Index = styled.p` display: inline-block; + color: ${({ theme }) => theme.secondaryText}; `; const StyledReactMarkdown = styled(ReactMarkdown)` @@ -230,7 +231,7 @@ const EvidenceCard: React.FC = ({ - #{index}: + #{index}.

{name}

{name && description ? {description} :

{evidence}

}