4cc9fcb40a
- Move .scss files to default `_sass` folder - Configure Sass/SCSS in `_config.yml` - Run .scss files through Autoprefixer - Remove unnecessary npm scripts for building CSS - Close #333
15 lines
340 B
SCSS
15 lines
340 B
SCSS
@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;
|
|
}
|
|
}
|