animate merging chunks

This commit is contained in:
Ryan
2025-03-30 17:31:27 -04:00
committed by GitHub
parent 9c71c46c4e
commit 394e7ef041
2 changed files with 38 additions and 22 deletions

View File

@@ -2058,4 +2058,12 @@ body.dark-mode .admin-panel-content label {
#changePasswordModal {
z-index: 9999;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.spinning {
animation: spin 1s linear infinite;
}