Created
December 2, 2015 15:42
-
-
Save sajhd/8d8a51a738da53f16747 to your computer and use it in GitHub Desktop.
Breakpoints
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
| $tablet-width : 480px; | |
| $desktop-width : 800px; | |
| $large-width : 1200px; | |
| $full-width : 1600px; | |
| @mixin device480 { | |
| @media (min-width: #{$tablet-width}) { | |
| @content; | |
| } | |
| } | |
| @mixin device800 { | |
| @media (min-width: #{$desktop-width}) { | |
| @content; | |
| } | |
| } | |
| @mixin device1200 { | |
| @media (min-width: #{$large-width}) { | |
| @content; | |
| } | |
| } | |
| @mixin device1600 { | |
| @media (min-width: #{$full-width}) { | |
| @content; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment