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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user