kristerkari/react-native-css-media-query-processor

Support @media not ios

kristerkari opened this issue · 0 comments

Currently you can write this to only target iOS:

@media ios {
  .myClass {
    font-size: 1rem;
  }
}

but it would be good to support the not operator too to target other type than ios:

@media not ios {
  .myClass {
    font-size: 1rem;
  }
}