Make long KaTeX equations scrollable in the x-axis

Suggested from: https://katex.org/docs/issues.html, I have tested it adding a long equation and activating a phone user agent.
This commit is contained in:
MartinAramayo 2022-10-24 14:59:14 -03:00 committed by GitHub
parent 73437f24ea
commit dafc09c892
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,3 +29,10 @@ a {
color: var(--body-text-color);
}
}
/* --- Make long KaTeX equations scrollable in the x-axis --- */
.katex-display>.katex {
overflow-x: auto;
overflow-y: hidden;
}