@mixin ios {
  @supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */ 
    @content;
  }
}
