Skip to content

Instantly share code, notes, and snippets.

@rochabianca
Created December 5, 2018 20:57
Show Gist options
  • Save rochabianca/abcf016df890a323de5d470e4ccb45ee to your computer and use it in GitHub Desktop.
Save rochabianca/abcf016df890a323de5d470e4ccb45ee to your computer and use it in GitHub Desktop.
$l-device: 1200px;
$m-device: 760px;
$s-device: 480px;
@mixin d($size) {
@if $size == l {
@media screen and (min-width: #{$l-device}) {
@content;
}
}
@else if $size == m {
@media screen and (min-width: #{$m-device}) and (max-width: #{$l-device} - 1) {
@content;
}
}
@else if $size == s {
@media screen and (max-width: #{$m-device} - 1) {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment