fixed loader not shown

This commit is contained in:
knoxfighter 2018-08-12 01:37:50 +02:00
parent 935bd34c5b
commit fdeef278f1

View File

@ -17,4 +17,27 @@
}
}
}
}
}
.loader {
display: inline-block;
border: 5px solid lightgrey;
border-radius: 50%;
border-top: 5px solid #3498db;
width: 20px;
height: 20px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
box-sizing: unset;
position: absolute;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}