Skip to content

Commit 5233654

Browse files
authored
FIX: ensures wide equations are responsive on Safari
This commit ensures that wide equations can be scrolled on Safari. It previously failed because Safari doesn't not support the two value overflow shorthand.
1 parent cdf7a1a commit 5233654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/stylesheets/common/discourse-math.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
// special handeling for katex
2525
.katex-html {
2626
display: block;
27-
overflow: auto hidden;
27+
overflow-x: auto;
2828
max-width: 100%;
2929
padding: 0.25em 0.5em;
3030
box-sizing: border-box;

0 commit comments

Comments
 (0)