From c8ee7b9a192e4f73b04d402edaf1751d25107eb0 Mon Sep 17 00:00:00 2001 From: James Date: Fri, 7 Sep 2018 11:24:27 +1000 Subject: [PATCH] Fix article styling (#41) --- src/scss/yuzu/yuzu.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/scss/yuzu/yuzu.scss b/src/scss/yuzu/yuzu.scss index 5e01176e..ee7eba87 100644 --- a/src/scss/yuzu/yuzu.scss +++ b/src/scss/yuzu/yuzu.scss @@ -85,3 +85,14 @@ a:hover { .message-body.is-dropdown-target.is-active { display: block !important; } + +// Make text nicer to read in articles +.content p { + text-align: justify; + line-height: 1.45; +} + +// Fix background color of monospaced text +.content code { + background: $dark; +}