We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ec0c93 commit 37d768dCopy full SHA for 37d768d
web/src/components/EvidenceCard.tsx
@@ -57,11 +57,12 @@ const IndexAndName = styled.div`
57
display: flex;
58
flex-direction: row;
59
align-items: center;
60
- gap: 6px;
+ gap: 5px;
61
`;
62
63
const Index = styled.p`
64
display: inline-block;
65
+ color: ${({ theme }) => theme.secondaryText};
66
67
68
const StyledReactMarkdown = styled(ReactMarkdown)`
@@ -230,7 +231,7 @@ const EvidenceCard: React.FC<IEvidenceCard> = ({
230
231
<StyledCard>
232
<TopContent>
233
<IndexAndName>
- <Index>#{index}: </Index>
234
+ <Index>#{index}. </Index>
235
<h3>{name}</h3>
236
</IndexAndName>
237
{name && description ? <StyledReactMarkdown>{description}</StyledReactMarkdown> : <p>{evidence}</p>}
0 commit comments