add loading icon and fix cors

This commit is contained in:
Pritimay Sarkar
2023-12-10 23:39:27 +05:30
parent 09d18106b8
commit 84740e846f
2 changed files with 89 additions and 4 deletions

View File

@@ -26,4 +26,26 @@
.end-date {
margin: 10px;
}
.download-row {
flex-direction: row;
display: flex;
justify-content: center;
align-items: center;
margin: 1.5rem;
}
.loading-icon {
animation: rotate 2s linear infinite;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}