22 lines
342 B
CSS
22 lines
342 B
CSS
|
.Loading-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.Loading-logo {
|
||
|
animation: Loading-logo-spin infinite 20s linear;
|
||
|
height: 40vmin;
|
||
|
pointer-events: none;
|
||
|
margin-bottom: 20%;
|
||
|
}
|
||
|
|
||
|
@keyframes Loading-logo-spin {
|
||
|
from {
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
to {
|
||
|
transform: rotate(360deg);
|
||
|
}
|
||
|
}
|