fixing footnotes / page width

This commit is contained in:
Nasir Anthony Montalvo
2026-01-31 02:02:46 -06:00
parent eb21658b37
commit 85aea1b4e9

View File

@@ -1247,3 +1247,31 @@ blockquote {
.suggestion-item:hover { .suggestion-item:hover {
background-color: #f0f0f0; background-color: #f0f0f0;
} }
/* ============================================================================
FOOTNOTES
============================================================================ */
.footnotes a {
display: inline-block;
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
text-overflow: ellipsis;
}
@media (max-width: 768px) {
.footnotes p {
font-size: 14px;
}
.footnotes a {
font-size: 12px;
}
}
.footnotes p {
word-wrap: break-word;
word-break: break-all;
}
.footnotes {
overflow-x: hidden;
max-width: 100%;
}