In my Ionic application, I am utilizing the ion-spinner
. However, I have encountered an issue with resizing the spinner. While custom CSS works well with default spinners, it does not function properly with Bubbles, Circles, and Dots spinners.
CSS
.spinner-large {
width: 100px;
height: 100px;
}
HTML
<ion-spinner name="dots" class="spinner-large"></ion-spinner>
Is there a solution to this problem?