Combine SCSS and JS into one assets folder

This commit is contained in:
Michael Rose
2016-03-17 21:32:55 -04:00
parent f87b828ca2
commit af16afdaf2
117 changed files with 15 additions and 10 deletions

15
assets/scss/vendor/breakpoint/_no-query.scss vendored Executable file
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;
}
}