Display all text on the button

0

Hello! Is it possible to display all button text on it?

Youareautomaticallyaddingtheseellipsis,butwouldliketodisplaytheentiretext.

<ion-segment-buttonvalue="Bareserestaurantes" class="round-button" (click)="selecionaprodutoscategoria(2)">
        Bares & Restaurantes
      </ion-segment-button>
    
asked by anonymous 07.08.2018 / 21:09

1 answer

0

One solution is to change the css to allow the line break.

.round-button{
    white-space: normal;
}
    
07.08.2018 / 21:51