I have a ionic 4 slides component in which i want to change styling of the pagination bullets
<ion-slides class="lyt-carousel" pager="true" [options]="slideOpts">
<ion-slide>
<h1>Slide 1</h1>
</ion-slide>
<ion-slide>
<h1>Slide 2</h1>
</ion-slide>
<ion-slide>
<h1>Slide 3</h1>
</ion-slide>
</ion-slides>
I'm able to change the color of the bullets by the below code(CODE #1) bt i want to add more customization like border-color,padding etc, which current I'm not able to do it (CODE #2)
CODE #1
.lyt-carousel {
--bullet-background-active: red;
--bullet-background: white;
}
CODE #2
ion-slides {
.swiper-pagination-bullets {
margin-top: 15px;
.swiper-pagination-bullet {
border: 5px solid blue;
}
}
}