From 437ca97eacd4175e72df27bca80191ae82a9c16f Mon Sep 17 00:00:00 2001 From: Jordan Vidrine <30537603+jordanvidrine@users.noreply.github.com> Date: Wed, 6 Jan 2021 16:54:37 -0600 Subject: [PATCH] FIX: Fix bg color of header on published page (#11652) This commit correctly sets the bg color of the header on published pages to be var(--header_background) instead of var(--secondary). --- app/assets/stylesheets/publish.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/publish.scss b/app/assets/stylesheets/publish.scss index 15bdadfb230..52fc15fd501 100644 --- a/app/assets/stylesheets/publish.scss +++ b/app/assets/stylesheets/publish.scss @@ -9,7 +9,7 @@ width: 100%; top: 0; z-index: z("header"); - background-color: var(--secondary, $secondary); + background-color: var(--header_background, $header_background); box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.25); position: sticky; top: 0;