Hi there,
How can I change the color of the checkmark in a ion-checkbox
when used as an input inside an ion-alert
?
My inpust in the ion-alert
are:
inputs: [
{
type: 'checkbox',
name: 'a',
label: 'checkbox1',
cssClass: 'custom'
},
{
type: 'checkbox',
name: 'b',
label: 'checkbox2',
cssClass: 'custom'
},
{
type: 'checkbox',
name: 'c',
label: 'checkbox3',
cssClass: 'custom'
}
]
When changing the text color of a input
inside an ion-alert
I can achieve this with:
input.alert-input.custom {
color: white;
}
But how to do this on a checkbox?