我正在使用 Ionic 5,并且像md
模式下的所有 Ionic 框架一样,所有按钮文本都是大写的。所以我在global.scss
文件中维护了以下内容。
ion-button{
text-transform:none!important;
}
它适用于普通按钮,但Alert 按钮仍然都是大写的。如何设置警报按钮的全局参数?
我正在使用 Ionic 5,并且像md
模式下的所有 Ionic 框架一样,所有按钮文本都是大写的。所以我在global.scss
文件中维护了以下内容。
ion-button{
text-transform:none!important;
}
它适用于普通按钮,但Alert 按钮仍然都是大写的。如何设置警报按钮的全局参数?
对于离子警报按钮,请使用.alert-button
或.alert-button-inner
在.alert-wrapper
类内。
.alert-wrapper {
.alert-button {
color: red;
text-transform: none;
}
}
全局.scss