Cataloguer/assets/css/abstracts/_mixins.scss
2022-12-17 12:41:44 -06:00

13 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;
}
}
}