I'm loading a website through an iFrame in my ionic app.
I realize that every button turned blue.
I've searched a little bit and I found that safari
was adding the following code.
button {
color: -apple-system-blue;
}
select {
color: -apple-system-blue;
}
How can I avoid this problem ?
I found the following thread that gave me an answer to my question.
Basically apple is adding this color to every button and there is no way to avoid it.
So the only way to fix it is to add a color to your button.
button {
color: #000;
}
select {
color: #000;
}