Refactor code structure for improved readability and maintainability
Playwright Tests / test (push) Has been cancelled

This commit is contained in:
2026-07-08 19:33:23 +02:00
parent 4abf81cd7d
commit 59a2b86c09
23 changed files with 676 additions and 60 deletions
@@ -1,4 +1,8 @@
@keyframes fis_spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.edit_frm {
@@ -376,6 +380,22 @@
}
}
}
&.freeze::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 3rem;
height: 3rem;
margin: -1.5rem 0 0 -1.5rem;
border: 0.4rem solid rgba(255, 255, 255, .35);
border-top-color: #FFF;
border-radius: 50%;
z-index: 11;
pointer-events: none;
animation: fis_spin 0.8s linear infinite;
}
}
}