1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

Fix for iPhone in portrait mode

This commit is contained in:
AmateurAudioDude
2024-08-28 00:17:07 +10:00
committed by GitHub
parent 1b2bfefc4f
commit 8b8a0f8632

View File

@@ -244,14 +244,20 @@ label {
display: none;
}
.overlay {
#flags-container-phone,
#flags-container-desktop {
position: relative; /* Confine overlay within container which is necessary for iPhones */
}
#flags-container-phone .overlay,
#flags-container-desktop .overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
pointer-events: auto; /* Ensure that the overlay captures clicks */
opacity: 0; /* Make the overlay invisible */
bottom: 0;
pointer-events: auto;
opacity: 0;
}
.admin-quick-dashboard {