Мне нужно изменить css
моего всплывающего окна предупреждения, то есть я хочу изменить цвет заголовка на белый, а цвет фона на серый.Может ли кто-нибудь помочь, как это возможно?Спасибо.
presentPrompt() {
let alert = this.alertCtrl.create({
title: 'Add Your Question',
inputs: [
{
name: 'would',
placeholder: 'Would You ',
},
{
name: 'rather',
placeholder: 'Rather'
}
],
buttons: [
{
text: 'Add',
role: 'add',
handler: data => {
this.wouldquestion = data.would;
this.ratherquestion = data.rather;
this.afd.list("Questions/").push({
would:this.wouldquestion,
rather:this.ratherquestion,
ratherclick:this.ratherclicks,
wouldclick:this.wouldclicks
});
}
},
]
});
alert.present();
}