12 lines
293 B
SCSS
12 lines
293 B
SCSS
@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;
|
|
}
|
|
}
|
|
}
|
|
|