Hello Syncfusion team,
I try to change de loader in EJS grid because the default design does not correspond to our graphic charter. Is it possible to do that ? I do not find anything in the documentation.
Concretely I need to put that as the grid loader instead of the default :
.loader-centerd-screen {
border: 10px solid $medium-grey;
border-top: 10px solid $light-blue;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 2s linear infinite;
display: block;
margin-top: 40vh;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
Regards