Update blazor architecture

This commit is contained in:
2025-02-21 21:08:49 +01:00
parent 0c21e853f3
commit c04b8285d7
17 changed files with 252 additions and 378 deletions

View File

@@ -0,0 +1,31 @@
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--semi-black);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.loader {
border: 8px solid var(--white);
border-top: 8px solid var(--violet);
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}