jan/web/styles/components/message.scss
2024-11-24 21:09:06 +07:00

31 lines
482 B
SCSS

.message {
white-space: pre-line;
word-break: break-word;
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;
}
}