.loadingSpinner { | |
width: 100%; | |
height: 150px; | |
position: relative; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
.spinner { | |
animation: rotate 2s linear infinite; | |
z-index: 2; | |
width: 50px; | |
height: 50px; | |
& .path { | |
stroke: hsl(210, 70%, 75%); | |
stroke-linecap: round; | |
animation: dash 1.5s ease-in-out infinite; | |
} | |
} | |
&.initial { | |
height: 700px; | |
} | |
@keyframes rotate { | |
100% { | |
transform: rotate(360deg); | |
} | |
} | |
@keyframes dash { | |
0% { | |
stroke-dasharray: 1, 150; | |
stroke-dashoffset: 0; | |
} | |
50% { | |
stroke-dasharray: 90, 150; | |
stroke-dashoffset: -35; | |
} | |
100% { | |
stroke-dasharray: 90, 150; | |
stroke-dashoffset: -124; | |
} | |
} | |
} | |