From 1e10549ee25450b2c586932a0f60bf2cac4e6691 Mon Sep 17 00:00:00 2001 From: Paul Corbett Date: Tue, 27 Feb 2018 15:43:39 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9BFixed=20render=20issue=20with=20cod?= =?UTF-8?q?e=20blocks=20in=20lists=20(#436)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #415 * Add max-width to ul & ol tags --- assets/css/global.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/global.css b/assets/css/global.css index b5ea487..ffbfff8 100644 --- a/assets/css/global.css +++ b/assets/css/global.css @@ -267,7 +267,6 @@ th { padding: 0; } - /* ========================================================================== Base styles: opinionated defaults ========================================================================== */ @@ -360,6 +359,11 @@ ol { list-style: decimal; } +ul, +ol { + max-width: 100%; +} + li { margin: 0.5em 0; padding-left: 0.3em;