Last active
June 18, 2021 19:50
-
-
Save aydgn/7a9d6dd450632d85b11e54dab10e0dcd to your computer and use it in GitHub Desktop.
Mobile first SCSS media query mixin
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: ( | |
| "phone": 400px, | |
| "phone-wide": 480px, | |
| "phablet": 560px, | |
| "tablet-small": 640px, | |
| "tablet": 768px, | |
| "tablet-wide": 1024px, | |
| "desktop": 1248px, | |
| "desktop-wide": 1440px); | |
| @mixin mq($width, $type: min) { | |
| @if map_has_key($breakpoints, $width) { | |
| $width: map_get($breakpoints, $width); | |
| @if $type==max { | |
| $width: $width - 1px; | |
| } | |
| @media only screen and (#{$type}-width: $width) { | |
| @content; | |
| } | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage