* Revert "feat: temporary remove dark mode :( (#2168)" This reverts commit 222b4ad897c275dab0eaec3c8a8472bf3df7afc4. * fix: revert darkmode and fix darkmode for import model * fix: prettier format import model --------- Co-authored-by: Louis <louis@jan.ai>
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;
|
|
}
|