Add AnimationContainer component

This commit is contained in:
2026-01-13 14:20:03 +01:00
parent 68562f342d
commit 7213a34488
4 changed files with 3634 additions and 0 deletions

13
src/globals.css Normal file
View File

@@ -0,0 +1,13 @@
.loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}