You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
452 B
26 lines
452 B
#loader{
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 99999;
|
|
background: #FFF;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.loading-icon{
|
|
width: 42px;
|
|
height: auto;
|
|
animation: loadingAnimation 1s infinite;
|
|
}
|
|
}
|
|
|
|
@keyframes loadingAnimation {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|