From c28f2dff2290bd33f9504b90fbca8cab5de747a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 16 Jun 2022 03:51:41 +0200 Subject: Move CSS background-color to body element. This ensures it applies to the entire page. Previously the parts of .root which overflowed lacked the background. --- static/style.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/static/style.scss b/static/style.scss index 6b06d5d2..6c23ebc6 100644 --- a/static/style.scss +++ b/static/style.scss @@ -5,14 +5,16 @@ html, body { margin: 0; } +body { + background-color: var(--background-color); +} + .root { display: grid; margin: 0; max-width: 100%; height: 100%; - background-color: var(--background-color); - grid-template-columns: auto auto 20em; grid-template-rows: auto; -- cgit v1.2.3