Merge pull request #396 from lanedirt/371-tweak-client-body-and-footer-z-index

Fix body and footer overlap issue
This commit is contained in:
Leendert de Borst
2024-11-22 10:03:33 +01:00
committed by GitHub
2 changed files with 9 additions and 1 deletions

View File

@@ -8,7 +8,7 @@
<ConfirmModal />
<FullScreenLoadingIndicator @ref="LoadingIndicator" />
<TopMenu />
<div class="flex pt-16 pb-4 lg:pb-16 overflow-hidden bg-gray-100 dark:bg-gray-900">
<div class="flex pt-16 mb-4 lg:mb-16 overflow-hidden bg-gray-100 dark:bg-gray-900 relative z-20">
<div id="main-content" class="relative z-10 w-full max-w-screen-2xl mx-auto h-full overflow-y-auto bg-gray-100 dark:bg-gray-900">
<main>
<GlobalNotificationDisplay />

View File

@@ -690,6 +690,10 @@ video {
z-index: 50;
}
.z-20 {
z-index: 20;
}
.col-span-1 {
grid-column: span 1 / span 1;
}
@@ -2764,6 +2768,10 @@ video {
margin-top: 4rem;
}
.lg\:mb-16 {
margin-bottom: 4rem;
}
.lg\:block {
display: block;
}