Not one conflict, today was a good day.
This commit is contained in:
@@ -33,6 +33,7 @@ export function showEasterEgg(title, text) {
|
||||
overlay.hidden = false;
|
||||
overlay.querySelector("#easterClose").addEventListener("click", () => {
|
||||
overlay.hidden = true;
|
||||
overlay.innerHTML = "";
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
+8
-1
@@ -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
@@ -1,4 +1,4 @@
|
||||
const CACHE = "tym-v1.0.0";
|
||||
const CACHE = "tym-v1.0.1";
|
||||
const ASSETS = [
|
||||
"/",
|
||||
"/index.html",
|
||||
|
||||
Reference in New Issue
Block a user