Move SCSS partials to /_sass/minimal-mistakes for easier CSS customization

This commit is contained in:
Michael Rose
2017-04-18 12:52:11 -04:00
parent eaf366e405
commit 3fc1bfde26
220 changed files with 146 additions and 173 deletions

View File

@ -0,0 +1,15 @@
@function breakpoint-no-query($query) {
@if type-of($query) == 'list' {
$keyword: nth($query, 1);
@if type-of($keyword) == 'string' and ($keyword == 'no-query' or $keyword == 'no query' or $keyword == 'fallback') {
@return nth($query, 2);
}
@else {
@return false;
}
}
@else {
@return false;
}
}