Not one conflict, today was a good day.

This commit is contained in:
Frank Schwenk
2026-06-09 21:36:45 +02:00
parent 019428ad5c
commit 5b7706bd6b
7 changed files with 42 additions and 2 deletions
+1
View File
@@ -33,6 +33,7 @@ export function showEasterEgg(title, text) {
overlay.hidden = false;
overlay.querySelector("#easterClose").addEventListener("click", () => {
overlay.hidden = true;
overlay.innerHTML = "";
});
}
+8 -1
View File
@@ -226,8 +226,15 @@ body {
/* Easter egg overlay */
.easterEgg {
position: fixed; inset: 0; background: rgba(0,0,0,.7);
z-index: 2000;
}
.easterEgg[hidden] {
display: none !important;
pointer-events: none;
}
.easterEgg:not([hidden]) {
display: flex; align-items: center; justify-content: center;
z-index: 2000; animation: fadeIn .3s ease;
animation: fadeIn .3s ease;
}
.easterEggInner {
background: linear-gradient(135deg, var(--primary), var(--accent-purple));
+1 -1
View File
@@ -1,4 +1,4 @@
const CACHE = "tym-v1.0.0";
const CACHE = "tym-v1.0.1";
const ASSETS = [
"/",
"/index.html",