From 2794a3269cef976c6971a82bdb9fc0459a391f28 Mon Sep 17 00:00:00 2001 From: alistair3149 Date: Tue, 9 Jul 2024 18:28:31 -0400 Subject: [PATCH] =?UTF-8?q?fix(core):=20=F0=9F=90=9B=20explictly=20set=20z?= =?UTF-8?q?-index=20for=20body=20container?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit That should avoid position relative elements from going over the sticky header. Closes: #577 --- resources/skins.citizen.styles/layout.less | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/skins.citizen.styles/layout.less b/resources/skins.citizen.styles/layout.less index cf0cd10f..fe73df60 100644 --- a/resources/skins.citizen.styles/layout.less +++ b/resources/skins.citizen.styles/layout.less @@ -47,6 +47,7 @@ } .citizen-body { + z-index: @z-index-base; // Stop body content going over sticky header grid-area: content; }