Additional styles for rich text
CI / Test (pull_request) Failing after 40s

Especially for editable content
This commit is contained in:
2026-08-09 11:42:41 -06:00
parent 55df8a9c31
commit b44b689caf
4 changed files with 37 additions and 2 deletions
@@ -0,0 +1,30 @@
@layer base {
main {
.rich-text {
ul {
@apply list-disc list-inside;
li {
@apply my-2;
}
}
ol {
@apply list-decimal list-inside;
li {
@apply my-2;
}
}
li > ul,
li > ol {
@apply ps-6 my-1;
}
hr {
@apply my-8;
}
}
}
}