Rename folder scss with an "_" for Jekyll to ignore it

This commit is contained in:
Michael Rose
2016-03-18 15:49:50 -04:00
parent eb2f3d052a
commit ce06d2e806
109 changed files with 1 additions and 2 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;
}
}