Skip to content

Commit

Permalink
[Refactor] loading spinner #1203
Browse files Browse the repository at this point in the history
  • Loading branch information
Clearsu committed Dec 22, 2023
1 parent 93be361 commit 2fe673f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions styles/UI/LoadingSpinner.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
@keyframes Rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

.loadingAnimation {
width: 3rem;
height: 3rem;
border: 0.3rem solid rgb(167, 167, 167);
border-top-color: transparent;
border-left-color: transparent;
border-radius: 50%;
animation: Rotate 0.8s infinite linear;
}

0 comments on commit 2fe673f

Please sign in to comment.