From 8a0c3aeaddf8393513df080fe41e936bd9d963fd Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Tue, 16 Nov 2021 03:06:44 +0000 Subject: [PATCH] landing_page: Force white background colour. A page can have either `white` (from `landing_page.css`) or `gray` (from `portico.css`) background color depending on webpack chunking order. So, this fixes that bug. --- static/styles/portico/landing_page.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/styles/portico/landing_page.css b/static/styles/portico/landing_page.css index 08c5f93c3e..0d8b6c0bf5 100644 --- a/static/styles/portico/landing_page.css +++ b/static/styles/portico/landing_page.css @@ -5,7 +5,7 @@ html { body { margin: 0; - background-color: hsl(0, 0%, 100%); + background-color: hsl(0, 0%, 100%) !important; color: hsl(0, 0%, 27%); line-height: normal;