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
// define breakpoints | |
$small: #{"screen and (max-width: 479px)"} | |
$medium: #{"screen and (min-width: 480px) and (max-width: 767px)"} | |
$large: #{"screen and (min-width: 768px)"} | |
// define mixin | |
=respond-to($media...) | |
$media-list: null | |
@each $query in $media | |
$media-list: append($media-list, unquote("#{$query}"), comma) |
OlderNewer