Skip to content

Instantly share code, notes, and snippets.

@sseletskyy
Created July 31, 2020 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sseletskyy/962e960e95ecac204b569263ef157121 to your computer and use it in GitHub Desktop.
Save sseletskyy/962e960e95ecac204b569263ef157121 to your computer and use it in GitHub Desktop.
browser only mixins
@mixin ie11 {
/* stylelint-disable */
_:-ms-input-placeholder,
/* stylelint-enable */
:root & {
@content;
}
}
// Safari 10.1+
@mixin safari {
@media not all and (min-resolution:.001dpcm) {
@media not all {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment