I want to modify ion-slides pager color in ionic2
but I don’t know what I do.
I tried this code
.slider-pager .slider-pager-page
{
stroke: #9f0 !important;
}
but it didn’t work for me
I want to modify ion-slides pager color in ionic2
but I don’t know what I do.
I tried this code
.slider-pager .slider-pager-page
{
stroke: #9f0 !important;
}
but it didn’t work for me
If you’re using IonicV2, you should use these classes:
.swiper-pagination {
padding: 3px;
bottom:0px;
.swiper-pagination-bullet {
background: #FFF;
margin: 0 3px;
}
}
thank you luukschoen!!
it works my project!!