1

我正在使用 Ionic 5,并且像md模式下的所有 Ionic 框架一样,所有按钮文本都是大写的。所以我在global.scss文件中维护了以下内容。

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

它适用于普通按钮,但Alert 按钮仍然都是大写的。如何设置警报按钮的全局参数

4

1 回答 1

1

对于离子警报按钮,请使用.alert-button.alert-button-inner.alert-wrapper类内。

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

全局.scss

在此处输入图像描述

于 2020-03-29T17:53:57.573 回答