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