Fix typo in resurrection CSS class and animation names

This commit is contained in:
CodeDevMLH
2026-02-19 03:18:20 +01:00
parent 9b9cad1caa
commit 20da9899e4

View File

@@ -1,4 +1,4 @@
.ressurection-container { .resurrection-container {
display: block; display: block;
position: fixed; position: fixed;
overflow: hidden; overflow: hidden;
@@ -10,20 +10,20 @@
z-index: 10; z-index: 10;
} }
.ressurection-symbol { .resurrection-symbol {
position: fixed; position: fixed;
z-index: 15; z-index: 15;
top: -15%; top: -15%;
user-select: none; user-select: none;
-webkit-user-select: none; -webkit-user-select: none;
cursor: default; cursor: default;
animation-name: ressurection-fall, ressurection-sway; animation-name: resurrection-fall, resurrection-sway;
animation-timing-function: linear, ease-in-out; animation-timing-function: linear, ease-in-out;
animation-iteration-count: infinite, infinite; animation-iteration-count: infinite, infinite;
will-change: transform, top; will-change: transform, top;
} }
.ressurection-symbol img { .resurrection-symbol img {
z-index: 15; z-index: 15;
height: auto; height: auto;
width: 56px; width: 56px;
@@ -32,12 +32,12 @@
} }
@media (max-width: 768px) { @media (max-width: 768px) {
.ressurection-symbol img { .resurrection-symbol img {
width: 42px; width: 42px;
} }
} }
@keyframes ressurection-fall { @keyframes resurrection-fall {
0% { 0% {
top: -15%; top: -15%;
} }
@@ -47,7 +47,7 @@
} }
} }
@keyframes ressurection-sway { @keyframes resurrection-sway {
0%, 0%,
100% { 100% {
transform: translateX(0); transform: translateX(0);