I’m working in an app that was designed for android first, and now we have to style specific small things in iOS platforms.
I tried things like:
.ios .class-name { … }
.platform-ios .class-name { … }
.ios { .class-name { … }}
:root.ios .class-name { … }
.ios :host .class-name { … }
But I had no success.
Have anyone a solution for this task?