Skip to content

Instantly share code, notes, and snippets.

@davidgg
Last active August 29, 2015 14:14
Show Gist options
  • Save davidgg/ecb761f3f6a99e648f06 to your computer and use it in GitHub Desktop.
Save davidgg/ecb761f3f6a99e648f06 to your computer and use it in GitHub Desktop.
Media Query mixin for sass
@mixin small-device {
@media (min-width: #{$small-device}) {
@content;
}
}
@mixin mid-device {
@media (min-width: #{$mid-device}) {
@content;
}
}
@mixin big-device {
@media (min-width: #{$big-device}) {
@content;
}
}
p{
font-size: 30px;
@include small-device {
font-size: 35px;
}
@include mid-device {
font-size: 40px;
}
@include big-device {
font-size: 45px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment