Last active
December 15, 2015 13:59
-
-
Save mrakowski0/5271029 to your computer and use it in GitHub Desktop.
Browser specific css mixin
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 support($browser) { | |
| @if $browser == mozilla { | |
| @media only screen and (min--moz-device-pixel-ratio:0) { @content; } | |
| } | |
| @if $browser == webkit { | |
| @media only screen and (min-webkit-device-pixel-ratio:0) { @content; } | |
| } | |
| } |
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
| .image { | |
| margin: 2rem 0; | |
| @include support(mozilla) { | |
| margin: 3rem 0; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment