From 1adff4a1653998a30f9a182830ca2153d4832d65 Mon Sep 17 00:00:00 2001 From: jbpenrath Date: Thu, 15 Feb 2024 17:48:12 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84(demo)=20fix=20layout=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous fix introduces a new layout issue. Let's fix that properly. .. --- apps/demo/src/index.scss | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/apps/demo/src/index.scss b/apps/demo/src/index.scss index 9d2f390..e20abf4 100644 --- a/apps/demo/src/index.scss +++ b/apps/demo/src/index.scss @@ -22,16 +22,17 @@ a { // App -html { - background: linear-gradient(153deg, var(--c--theme--colors--greyscale-100) 0%, var(--c--theme--colors--greyscale-000) 100%); -} - html, body, #root { width: 100%; - min-height: 100%; + height: 100%; margin: 0; } +html { + background: linear-gradient(153deg, var(--c--theme--colors--greyscale-100) 0%, var(--c--theme--colors--greyscale-000) 100%); + background-attachment: fixed; +} + .pattern { position: absolute; z-index: -1;