Add spinner

This commit is contained in:
MCHost
2025-07-03 00:43:58 -04:00
parent cb6d0b10ca
commit d38a642efb
5 changed files with 79 additions and 626 deletions

View File

@ -47,4 +47,19 @@
.bg-clip-text {
-webkit-background-clip: text;
background-clip: text;
}
.loading-spinner {
display: none;
border: 4px solid rgba(255, 255, 255, 0.2);
border-top: 4px solid #3B82F6;
border-radius: 50%;
width: 24px;
height: 24px;
animation: spin 1s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}