Fix sidenotes pushing each other horizontally

Add clear:right to ensure sidenotes stack vertically
instead of being pushed off to the side.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-04 23:23:45 -05:00
parent cb39aa5a8f
commit aa7929205e
+8
View File
@@ -127,6 +127,14 @@
content: "";
}
/* Prevent sidenotes from pushing each other horizontally */
.sidenote, .marginnote {
clear: right;
float: right;
margin-right: -60%;
width: 50%;
}
/* Cross-refs: collapsed by default, show just first ref per group */
.sidenote.cross-refs {
cursor: pointer;