I have recently implemented an Angular Material spinner with a disappearing animation that moves downwards before fading away. Is there a way to disable this animation? I have already tried using keyframes without success.
<mat-spinner style="margin: auto; margin-top: 10%"></mat-spinner>
@keyframes slideDown {
0% {}
100% {
transform: translateY(20%);
}
}
.cdk-overlay-pane {
transform: translateY(-250%);
animation: slideDown 0.5s forwards 0s ease-in;
}
.cdk-overlay-container>* {
transition: none;
}