Issue
I'm using ion-spinner
in a ionic application. But im my case i want to change the size of the spinner. When i use custom css with default spinner Resizing works fine. But with Bubbles,Circles, Dots spinners, it doesn't work properly.
CSS
.spinner-large {
width: 100px;
height: 100px;
}
HTML
<ion-spinner name="dots" class="spinner-large"></ion-spinner>
how can i fix this.
Solution
Try using
ion-spinner {
transform: scale(3);
}
From ionic forum its mentioned that this will make you loose some resolution.
Answered By - Nitheesh
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.