Created
July 31, 2020 15:34
-
-
Save sseletskyy/962e960e95ecac204b569263ef157121 to your computer and use it in GitHub Desktop.
browser only mixins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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