Upgraded dependencies
This commit is contained in:
19
Moonlight.Client/Styles/additions/loaders.css
Normal file
19
Moonlight.Client/Styles/additions/loaders.css
Normal file
@@ -0,0 +1,19 @@
|
||||
.loader {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
border: 3px solid #FFF;
|
||||
border-bottom-color: transparent;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
animation: loader-rotation 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes loader-rotation {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user