fix(styles): ensure MathJax display inline-block

Added a rule to set '.MJXc-display' elements to 'inline-block' to address layout issues where MathJax content was disrupting page flow. This change ensures better alignment and presentation of MathJax elements.
This commit is contained in:
Kumi 2024-08-03 20:36:34 +02:00
parent 97935f9401
commit 1128527e5d
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -159,3 +159,7 @@ a h5 {
background-color: #007bff;
color: white;
}
.MJXc-display {
display: inline-block !important
}