Is there a way to change the appearance of a segment button from square to round using CSS?
https://i.sstatic.net/KRjSh.png
I attempted to use traditional CSS, but encountered issues when Ionic2 attempted to transform the button on segment-activated
. You can view an example in this Plunker.
<ion-segment [(ngModel)]="date" danger>
<ion-segment-button value="1">
1
</ion-segment-button>
<ion-segment-button value="2">
2
</ion-segment-button>
<ion-segment-button value="3">
3
</ion-segment-button>
</ion-segment>
.
I was unsuccessful in achieving the desired result with standard CSS, and encountered layout issues when selecting a different button https://i.sstatic.net/o0dbQ.png.