Skip to content

Commit 89ab350

Browse files
committed
Improve code blocks layout on mobile
Limit the code block width to the viewport size and if necessary show horizontal scrollbar on given block. It unifies the layout of code blocks with active and inactive editor, and prevents horizontal scrolling on the whole page.
1 parent b9ca306 commit 89ab350

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

html/css/ejs.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ pre {
5353
padding: 5px 0 5px 15px;
5454
line-height: 1.35;
5555
margin: 1rem 0;
56+
max-width: 100%;
57+
overflow-x: auto;
5658
}
5759

5860
pre[data-language=javascript] {

0 commit comments

Comments
 (0)