From 0cc322f133820c02ce675a22128eaa56d0126ed6 Mon Sep 17 00:00:00 2001 From: Robert Korulczyk Date: Tue, 22 Aug 2017 23:09:26 +0200 Subject: [PATCH] Fix `white-space` styles for `pre code` blocks Signed-off-by: Robert Korulczyk --- css/style.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/style.scss b/css/style.scss index 64a58fbb3..14eebe19c 100644 --- a/css/style.scss +++ b/css/style.scss @@ -1053,6 +1053,10 @@ input.input-inline { pre { background-color: $color-lightgrey; padding: 3px; + + code { + white-space: pre; + } } }