Created
May 18, 2018 18:56
-
-
Save leafiy/d6f3a91a902424791aae1470b561ec9d to your computer and use it in GitHub Desktop.
none
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
| $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