From e7770ac6ece108e63ca2e4555b9cb15d50e452c8 Mon Sep 17 00:00:00 2001 From: Andrew Bone Date: Wed, 26 Dec 2018 21:53:25 +0000 Subject: [PATCH] Add --theme-background to new post page (#1402) The background colour tag is different, by default, on the new post page so I missed it on my initial sweep --- app/assets/stylesheets/preact/article-form.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/preact/article-form.scss b/app/assets/stylesheets/preact/article-form.scss index f7b3e6cc9..05481d93d 100644 --- a/app/assets/stylesheets/preact/article-form.scss +++ b/app/assets/stylesheets/preact/article-form.scss @@ -6,8 +6,8 @@ padding-top: calc(98px + 0.2vw); } padding-bottom: calc(94px + 2vw); - background: white; background: $light-gray; + background: var(--theme-background, $light-gray); } .articleform { @@ -428,4 +428,4 @@ background: $yellow; color: $black; } -} \ No newline at end of file +}