Skip to content

Instantly share code, notes, and snippets.

@leafiy
Created May 18, 2018 18:56
Show Gist options
  • Select an option

  • Save leafiy/d6f3a91a902424791aae1470b561ec9d to your computer and use it in GitHub Desktop.

Select an option

Save leafiy/d6f3a91a902424791aae1470b561ec9d to your computer and use it in GitHub Desktop.
none
$middle-width: 768px;
$large-width: 1024px;
@mixin middle {
@media (min-width: #{$middle-width}) and (max-width: #{$large-width - 1px}) {
@content;
}
}
@mixin large {
@media (min-width: #{$large-width}) {
@content;
}
}
@mixin small {
@media (max-width:#{$middle-width}) {
@content
}
}
#expmple{
width:500px;
@include small{
width:200px;
}
@include large{
widht:600px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment