Long math expressions go off-screen without being scrollable

The title says everything.
Can be fixed by adding things like max-width: 100% and overflow-x: auto.

Yep, I’d probably add this custom style somewhere:

<style>

.katex-display {
  max-width: none;
  overflow-x: auto;
  overflow-y: hidden;
}

</style>