Merge pull request #83 from quantified-uncertainty/question-page-design
Better question page styling; ol styling
This commit is contained in:
commit
0d0714a5d4
|
@ -59,3 +59,8 @@ ul {
|
|||
list-style-type: square;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: decimal;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
|
|
@ -87,16 +87,19 @@ const LargeQuestionCard: React.FC<{
|
|||
)}
|
||||
</div>
|
||||
|
||||
<div className="mx-auto max-w-prose">
|
||||
<Section title="Question description">
|
||||
<ReactMarkdown
|
||||
linkTarget="_blank"
|
||||
className="font-normal text-gray-900 max-w-prose"
|
||||
className="font-normal text-gray-900"
|
||||
>
|
||||
{question.description.replaceAll("---", "")}
|
||||
</ReactMarkdown>
|
||||
|
||||
</Section>
|
||||
<Section title="Indicators">
|
||||
<IndicatorsTable question={question} />
|
||||
</Section>
|
||||
</div>
|
||||
</Card>
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user