27 lines
371 B
SCSS
27 lines
371 B
SCSS
.message {
|
|
@apply text-black dark:text-gray-300;
|
|
white-space: pre-line;
|
|
|
|
ul,
|
|
ol {
|
|
list-style: auto;
|
|
padding-left: 24px;
|
|
white-space: normal;
|
|
}
|
|
|
|
a {
|
|
@apply text-blue-600 dark:text-blue-300;
|
|
&:hover {
|
|
@apply underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
button[class*='react-scroll-to-bottom--'] {
|
|
display: none;
|
|
}
|
|
|
|
.code-block {
|
|
white-space: normal;
|
|
}
|