Created
March 27, 2018 01:47
-
-
Save johnsiwicki/c1899461472519c66b878a6347dec045 to your computer and use it in GitHub Desktop.
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
| $breakpoints: { | |
| sm: 37.5em, // 600px | |
| md: 64em, // 1024px | |
| lg: 80 em // 1280px | |
| } | |
| @mixin breakpoint($breakpoint) { | |
| @media only screen (min-width: map-get($map: $breakpoints, $key: $breakpoint)) { @content: ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment