Set tr and td overflow-wrap to 'normal'

Closes #1258
This commit is contained in:
MasssiveJuice 2024-07-05 22:06:35 +12:00
parent af1fdaac0a
commit 0ff8b39f8c

View File

@ -43,10 +43,22 @@ ul,
.math {
color: var(--darkgray);
fill: var(--darkgray);
overflow-wrap: anywhere;
hyphens: auto;
}
p,
ul,
text,
a,
li,
ol,
ul,
.katex,
.math {
overflow-wrap: anywhere;
/* tr and td removed from list of selectors for overflow-wrap, allowing them to use default 'normal' property value */
}
.math {
&.math-display {
text-align: center;