fix(core): 🐛 explictly set z-index for body container

That should avoid position relative elements from going over the sticky header.

Closes: #577
This commit is contained in:
alistair3149 2024-07-09 18:28:31 -04:00
parent c555dfe1bf
commit 2794a3269c
No known key found for this signature in database

View file

@ -47,6 +47,7 @@
}
.citizen-body {
z-index: @z-index-base; // Stop body content going over sticky header
grid-area: content;
}