Added a loading spinner

This commit is contained in:
Mitchell McCaffrey
2020-04-14 17:36:25 +10:00
parent cf814c77f1
commit 29a0851c08
5 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
.spinner {
width: 32px;
height: 32px;
position: relative;
animation: rotate 2s infinite linear;
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}