feat: add loading page for when dataset is loading

Originally there was a simple "Loading" text, however this looked bad and might lead a user to think that the page had frozen.

There is now a more comprehensive loading animation which users might be happy to sit on for a few minutes.
This commit is contained in:
2026-03-04 18:39:20 +00:00
parent 29c90ddfff
commit b6815c490a
4 changed files with 127 additions and 6 deletions

View File

@@ -42,3 +42,24 @@ textarea:focus {
box-shadow: 0 0 0 3px var(--focus-ring);
outline: none;
}
@keyframes stats-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes stats-pulse {
0%,
100% {
opacity: 0.5;
}
50% {
opacity: 1;
}
}