From f972d64eeada17934d4155a7e78575fd356ce0dd Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Sat, 18 Jul 2020 19:30:59 +0530 Subject: [PATCH] fix markdown not displaying bullet lists --- src/styles/global.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/global.css b/src/styles/global.css index dd77067b..663725e4 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -48,6 +48,11 @@ section { @apply leading-relaxed whitespace-pre-wrap; } +.markdown ul { + list-style: disc; + list-style-position: inside; +} + @page { margin: 0; }