diff --git a/src/styles/main.css b/src/styles/main.css index 8974577..e43090c 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -59,3 +59,8 @@ ul { list-style-type: square; margin-left: 20px; } + +ol { + list-style: decimal; + margin-left: 20px; +} diff --git a/src/web/questions/pages/QuestionPage.tsx b/src/web/questions/pages/QuestionPage.tsx index b5de980..f053003 100644 --- a/src/web/questions/pages/QuestionPage.tsx +++ b/src/web/questions/pages/QuestionPage.tsx @@ -87,16 +87,19 @@ const LargeQuestionCard: React.FC<{ )} - - {question.description.replaceAll("---", "")} - - -
- -
+
+
+ + {question.description.replaceAll("---", "")} + +
+
+ +
+
);