Upgraded dependencies

This commit is contained in:
2024-12-05 13:11:58 +01:00
parent 721570927f
commit f08c8f013d
5 changed files with 55 additions and 26 deletions

View 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);
}
}