fix: corriger le masquage du bas de l'app par la barre Android

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Gwadaking
2026-04-14 17:06:06 -04:00
parent 6a6f42e55b
commit 5c860547f8
5 changed files with 17 additions and 9 deletions

View File

@@ -10,14 +10,14 @@ body {
.app {
position: relative;
width: 100vw;
height: 100vh;
height: 100dvh; /* dvh = dynamic, s'adapte à la barre d'adresse mobile */
}
/* ── Boutons flottants (signalement + info) ── */
.app__actions {
position: absolute;
bottom: 14px;
left: 16px;
bottom: max(14px, calc(14px + env(safe-area-inset-bottom)));
left: max(16px, calc(16px + env(safe-area-inset-left)));
display: flex;
flex-direction: column;
gap: 8px;