fix: missing markdown list and blackquote (#2980)

This commit is contained in:
Faisal Amir 2024-06-03 09:43:45 +07:00 committed by GitHub
parent 02478b3242
commit 1ce15e6bc4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,12 +8,24 @@
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;
}
}
.code-block {