Skip to content

Instantly share code, notes, and snippets.

@jdtdesigns
Created May 16, 2016 23:11
Show Gist options
  • Save jdtdesigns/8d966ec9ec7d737c3a5bd8952759a6c5 to your computer and use it in GitHub Desktop.
Save jdtdesigns/8d966ec9ec7d737c3a5bd8952759a6c5 to your computer and use it in GitHub Desktop.
// 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