32 lines
593 B
SCSS
32 lines
593 B
SCSS
/*
|
|
* Responsive Tools
|
|
* Responsive tools
|
|
*
|
|
* Dependencies:
|
|
* styles/settings/responsive.scss
|
|
*
|
|
* Version:
|
|
* 1.0.0 - 2018/02/23
|
|
*/
|
|
|
|
@mixin t-media-query($media-query) {
|
|
$breakpoint-found: false;
|
|
|
|
@each $breakpoint in $s-breakpoints {
|
|
$name: nth($breakpoint, 1);
|
|
$declaration: nth($breakpoint, 2);
|
|
|
|
@if $media-query == $name and $declaration {
|
|
$breakpoint-found: true;
|
|
|
|
@media only screen and #{$declaration} {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
|
|
@if $breakpoint-found == false {
|
|
@warn 'Breakpoint "#{$media-query}" does not exist';
|
|
}
|
|
}
|