Skip to content

Commit 37d768d

Browse files
committed
chore: nitpick in evidence cards
1 parent 6ec0c93 commit 37d768d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

web/src/components/EvidenceCard.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,12 @@ const IndexAndName = styled.div`
5757
display: flex;
5858
flex-direction: row;
5959
align-items: center;
60-
gap: 6px;
60+
gap: 5px;
6161
`;
6262

6363
const Index = styled.p`
6464
display: inline-block;
65+
color: ${({ theme }) => theme.secondaryText};
6566
`;
6667

6768
const StyledReactMarkdown = styled(ReactMarkdown)`
@@ -230,7 +231,7 @@ const EvidenceCard: React.FC<IEvidenceCard> = ({
230231
<StyledCard>
231232
<TopContent>
232233
<IndexAndName>
233-
<Index>#{index}: </Index>
234+
<Index>#{index}. </Index>
234235
<h3>{name}</h3>
235236
</IndexAndName>
236237
{name && description ? <StyledReactMarkdown>{description}</StyledReactMarkdown> : <p>{evidence}</p>}

0 commit comments

Comments
 (0)