Added a loading spinner
This commit is contained in:
13
src/components/Spinner.css
Normal file
13
src/components/Spinner.css
Normal file
@@ -0,0 +1,13 @@
|
||||
.spinner {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
position: relative;
|
||||
|
||||
animation: rotate 2s infinite linear;
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user