Merge branch 'staging' into neo-server

This commit is contained in:
Cohee
2024-04-15 00:26:52 +03:00
10 changed files with 276 additions and 81 deletions

View File

@@ -4,9 +4,6 @@
padding: 0;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 999999;
width: 100vw;
height: 100vh;
@@ -20,6 +17,15 @@
}
#load-spinner {
--spinner-size: 2em;
transition: all 300ms ease-out;
opacity: 1;
top: calc(50% - var(--spinner-size) / 2);
left: calc(50% - var(--spinner-size) / 2);
position: absolute;
width: var(--spinner-size);
height: var(--spinner-size);
display: flex;
align-items: center;
justify-content: center;
}