Created
October 26, 2015 09:46
-
-
Save rootical/24124be1bcc953ac7a1a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@import "breakpoint"; | |
.parent { | |
.child { | |
@include breakpoint(50em) { | |
margin-bottom: 0; | |
margin-top: wk-rem(2px); | |
} | |
} | |
} |
This file contains 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
@media (min-width: 50em) { | |
.parent .child { | |
margin-bottom: 0; | |
margin-top: wk-rem(2px); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment