Make links in lesson content visually distinct (underline + bold)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-26 11:35:07 +05:00
parent 7e6ad8067c
commit c1c33a0619
+9 -1
View File
@@ -157,7 +157,15 @@
border-color: var(--foreground); border-color: var(--foreground);
} }
/* ── Lesson content (TipTap nested lists fix) ──────────────────────── */ /* ── Lesson content (TipTap nested lists fix + link styles) ─────────── */
.prose a {
text-decoration: underline;
text-underline-offset: 3px;
font-weight: 500;
}
.prose a:hover {
opacity: 0.7;
}
.prose :where(li > p) { .prose :where(li > p) {
margin-top: 0; margin-top: 0;
margin-bottom: 0; margin-bottom: 0;