Fix clics qui traversent les ecrans (z-index + background opaque)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 18:29:56 +02:00
parent c691c4c191
commit f8d83d8481
2 changed files with 4 additions and 1 deletions

View File

@@ -44,11 +44,14 @@ html, body {
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
z-index: 1;
background: var(--fond);
}
.ecran.actif {
opacity: 1;
pointer-events: all;
z-index: 10;
}
/* === Ecran d'accueil === */