1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-27 14:33:52 +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; 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; position: absolute;
top: 0; top: 0;
bottom: 0;
left: 0; left: 0;
right: 0; right: 0;
pointer-events: auto; /* Ensure that the overlay captures clicks */ bottom: 0;
opacity: 0; /* Make the overlay invisible */ pointer-events: auto;
opacity: 0;
} }
.admin-quick-dashboard { .admin-quick-dashboard {