Skip to content
Snippets Groups Projects
Commit 5469891e authored by Alfin Johny's avatar Alfin Johny
Browse files

Fix math equation rendering issues

parent 9b22cc81
No related branches found
No related tags found
1 merge request!34Fix issues in math equations
Pipeline #1607696 passed
......@@ -37,6 +37,21 @@
font-size: 1.1em;
}
/* Make all LaTeX-style math equations white */
:root {
--math-color: #ffffff; /* Set the default color for equations */
}
/* MathJax equations */
.MathJax, mjx-container, math {
color: var(--math-color) !important;
}
/* KaTeX equations */
.katex, .katex-display {
color: var(--math-color) !important;
}
/* Download button styling */
.download-button-container {
text-align: center;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment