You will notice that the highlighted text seems to overflow on smaller screens.

Highlighter Overflow

There is a simple fix for that.

Add the below lines to your CSS.

pre { white-space: pre; overflow: auto; }

You will have a scroll bar enanbled now.

Highlighter Overflow Fixed