From 1ce15e6bc49414f30cde9eecb39e861001afa13f Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Mon, 3 Jun 2024 09:43:45 +0700 Subject: [PATCH] fix: missing markdown list and blackquote (#2980) --- web/styles/components/message.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/web/styles/components/message.scss b/web/styles/components/message.scss index a086c7aad..0bc0ab6eb 100644 --- a/web/styles/components/message.scss +++ b/web/styles/components/message.scss @@ -8,12 +8,24 @@ white-space: normal; } + ul { + list-style-type: disc; + } + + ol { + list-style-type: decimal; + } + a { color: hsla(var(--app-link)); &:hover { @apply underline; } } + + blockquote { + @apply inline-flex flex-col border-s-4 border-[hsla(var(--primary-bg))] bg-[hsla(var(--primary-bg-soft))] px-4 py-2; + } } .code-block {