Add loading indicator to group switcher

This commit is contained in:
VityaSchel
2023-10-15 00:58:12 +04:00
parent 95f1b8914f
commit 7e440c9bff
7 changed files with 194 additions and 30 deletions

View File

@@ -0,0 +1,15 @@
.spinner {
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-left: 2px solid transparent;
border-top: 2px solid transparent;
width: 16px;
height: 16px;
animation: spin 1s linear infinite;
margin-right: 8px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}