Created
May 16, 2016 23:11
-
-
Save jdtdesigns/8d966ec9ec7d737c3a5bd8952759a6c5 to your computer and use it in GitHub Desktop.
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
// To Create | |
@mixin size ($point) { | |
@if $point == large { | |
@media screen and (max-width: 1086px) { | |
@content; | |
} | |
} | |
@if $point == medium { | |
@media screen and (max-width: 850px) { | |
@content; | |
} | |
} | |
@if $point == small { | |
@media screen and (max-width: 528px) { | |
@content; | |
} | |
} | |
} | |
// To Use | |
@include size(medium) { | |
background: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment