From 20bad0ec5316c9ebf6ac09ef30841dafb46fc7b0 Mon Sep 17 00:00:00 2001 From: BrokenEagle Date: Tue, 3 Mar 2020 20:57:13 +0000 Subject: [PATCH] Remove the standard line-height attribute from
elements This is because it was messing with using line-height on the outer element. In order to get around this, the line height had to be set individually on every single
element used. --- app/javascript/src/styles/specific/notes.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/src/styles/specific/notes.scss b/app/javascript/src/styles/specific/notes.scss index d7f437e7e..21cb892a8 100644 --- a/app/javascript/src/styles/specific/notes.scss +++ b/app/javascript/src/styles/specific/notes.scss @@ -16,7 +16,7 @@ div#note-container { } div.note-body, div.note-box.embedded div.note-box-inner-border { - h1, h2, h3, h4, h5, h6, a, span, div, blockquote, br, p, ul, li, ol, em, strong, small, big, b, i, font, u, s, code, center { + h1, h2, h3, h4, h5, h6, a, span, div, blockquote, p, ul, li, ol, em, strong, small, big, b, i, font, u, s, code, center { line-height: 1.25; }