Fix nested list spacing in TipTap lesson content

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-25 13:05:33 +05:00
parent ab37af59f2
commit 808bcadfca
+14
View File
@@ -148,6 +148,20 @@
border-color: var(--foreground);
}
/* ── Lesson content (TipTap nested lists fix) ──────────────────────── */
.prose :where(li > p) {
margin-top: 0;
margin-bottom: 0;
}
.prose :where(li > ul, li > ol) {
margin-top: 0.375em;
margin-bottom: 0.375em;
padding-left: 1.5em;
}
.prose :where(ul > li, ol > li) {
padding-left: 0.375em;
}
/* Admin sidebar (dark) */
.admin-sidebar {
background-color: var(--sidebar-bg);