From 47afda1a16995cfdaab208dede22391c84257f7c Mon Sep 17 00:00:00 2001 From: Mason Ballengee Date: Thu, 20 Jun 2024 09:21:04 -0400 Subject: [PATCH] Set footer to negative z-index so paging works If controls such as the playlist paging ended up on the same level as the footer they were not clickable because the padding around the footer was covering them up. Setting the footer with a large negative z-index ensures that it will always be below the paging controls. --- app/assets/stylesheets/avalon/_footer.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/avalon/_footer.scss b/app/assets/stylesheets/avalon/_footer.scss index bd8499adc6..5313f9a3f9 100644 --- a/app/assets/stylesheets/avalon/_footer.scss +++ b/app/assets/stylesheets/avalon/_footer.scss @@ -21,6 +21,7 @@ width: 100%; min-height: 2.5rem; color: #999999; + z-index: -1000; } footer {