如何在 ionic 5 中自定义 ionic 刷新微调器图标的样式?我正在开发一个带有 lightmode 和 darkmode 的应用程序。在 lightmode 中,微调器以白色背景上的深灰色显示。到目前为止,一切都很好。但是如果我切换到暗模式,它会显示为白底白字。我试图改变颜色 fe
<ion-refresher slot="fixed">
<ion-refresher-content color="primary" refreshing-spinner="crescent">
</ion-refresher-content>
或 SCSS
ion-refresher {
ion-refresher-content {
--color: red;
}
}
ion-refresher {
ion-refresher-content {
color: red;
}
}
并将变量设置为
$refresher-icon-color: red;
我真的很感激一些帮助。谢谢!