Tapas Mukherjee
Tapas Mukherjee

Reputation: 2178

Ionic 5 Alert buttons are all capital

I am using Ionic 5 and like all Ionic frameworks in md mode all button text is all capital. So I have maintained the following in global.scss file.

ion-button{
        text-transform:none!important;
}

It's working for normal buttons but the Alert buttons are still all capital. How can I set global parameters for the Alert button?

Upvotes: 1

Views: 492

Answers (1)

Tomislav Stankovic
Tomislav Stankovic

Reputation: 3126

For Ionic Alert buttons use .alert-button or .alert-button-inner inside .alert-wrapper class.

   .alert-wrapper {
    .alert-button {
        color: red;
        text-transform: none;
     }
   }

global.scss

enter image description here

Upvotes: 1

Related Questions