0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Updated media query (#21303)

Fixes
https://linear.app/tryghost/issue/DES-317/adminx-members-list-header-column-overlaps-sidebar-in-mobile-viewport

Added a positioning and z-index change to the `thead` within the media
query to make sure it moved back behind the overlay.
This commit is contained in:
Daniël van der Winden 2024-10-15 12:10:21 +02:00 committed by GitHub
parent 8fd32f012b
commit d7e36cb22a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -507,6 +507,11 @@ ul.nostyle li {
padding-left: 0;
padding-right: 4vw;
}
.gh-list-scrolling thead {
position: relative;
z-index: 780;
}
}
@media (max-width: 450px) {