Füge Übergangseffekte für das Overlay hinzu und aktualisiere die Sichtbarkeit bei Berührungen
All checks were successful
Deploy via FTP / deploy (push) Successful in 3s

This commit is contained in:
2026-02-22 15:08:32 +01:00
parent 814002a11e
commit ada86e77f4
2 changed files with 10 additions and 0 deletions

View File

@@ -76,6 +76,12 @@ body::before {
width: max-content;
max-width: calc(100vw - 48px);
z-index: 10;
transition: opacity 220ms ease, transform 220ms ease;
}
#overlay.hidden {
opacity: 0;
transform: translateX(-50%) translateY(-6px);
}
#overlay h1 {