jan/web/styles/components/message.scss
Faisal Amir e196aefcd3
feat: new UI code block and Enable copying of code blocks or plain text mid-stream (#4010)
* feat: improvement ui codeblock

* chore: update ui code block

* chore: finalize ui code block and latex

* chore: fix jest testing and cleanup unused deps
2024-11-14 14:46:35 +07:00

30 lines
456 B
SCSS

.message {
white-space: pre-line;
font-size: 16px;
ul,
ol {
list-style: auto;
padding-left: 24px;
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;
}
}