fix: support markdown breakline

This commit is contained in:
Faisal Amir 2023-12-31 22:45:38 +07:00
parent b70c21490e
commit 50b1fc56a2

View File

@ -1,5 +1,7 @@
.message { .message {
@apply text-black dark:text-gray-300; @apply text-black dark:text-gray-300;
white-space: pre-line;
ul, ul,
ol { ol {
list-style: auto; list-style: auto;
@ -10,3 +12,7 @@
button[class*='react-scroll-to-bottom--'] { button[class*='react-scroll-to-bottom--'] {
display: none; display: none;
} }
.code-block {
white-space: normal;
}