diff --git a/app.js b/app.js index 941d3e1..fcb3021 100644 --- a/app.js +++ b/app.js @@ -726,7 +726,7 @@ function lockDown() { for (y of clearedLines) { matrix.lockedMinoes.splice(y, 1) matrix.lockedMinoes.unshift(Array(matrix.columns)) - matrix.table.rows[y].classList.add("line-cleared-animation") + matrix.table.rows[y].classList.add("cleared-line-animation") } matrix.redraw() stats.lockDown(clearedLines.length, tSpin) diff --git a/css/common.css b/css/common.css index 8b1bf89..766786f 100644 --- a/css/common.css +++ b/css/common.css @@ -70,7 +70,7 @@ td.hard-drop-animation { animation: hard-drop-animation ease-out .3s; } -@keyframes line-cleared-animation { +@keyframes cleared-line-animation { from { background-color: rgb(206, 255, 255, 40%); filter: saturate(50%) brightness(300%); @@ -81,8 +81,8 @@ td.hard-drop-animation { } } -tr.line-cleared-animation{ - animation: line-cleared-animation ease-out .3s; +tr.cleared-line-animation{ + animation: cleared-line-animation ease-out .3s; } span {