From 5099d3260626cc4b25fb91fd8ace0166af055fdd Mon Sep 17 00:00:00 2001 From: "Axel C. Lopez" Date: Sat, 29 Oct 2022 11:24:22 -0300 Subject: [PATCH] Fix overflow pre tag index.md In the docs, at h2#testing-on-localhost second pre child, the code snippet literally breaks and goes outside pre, div and everything. The same happens for h2#promise-and-generator-support third pre child, the code snippet breaks and goes outside the pre and everything. --- docs/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/style.css b/docs/style.css index fb2a9e365..958428013 100644 --- a/docs/style.css +++ b/docs/style.css @@ -73,6 +73,7 @@ pre { -webkit-box-shadow: inset 0 0 5px #eee; -moz-box-shadow: inset 0 0 5px #eee; box-shadow: inset 0 0 5px #eee; + overflow: scroll; } code .comment { color: #ddd }