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
22 lines
450 B
SCSS
22 lines
450 B
SCSS
@function breakpoint-parse-double-default($first, $second) {
|
|
$feature: '';
|
|
$value: '';
|
|
|
|
@if type-of($first) == 'string' {
|
|
$feature: $first;
|
|
$value: $second;
|
|
}
|
|
@else {
|
|
$feature: $second;
|
|
$value: $first;
|
|
}
|
|
|
|
// Set Context
|
|
$context-setter: private-breakpoint-set-context($feature, $value);
|
|
|
|
@if (breakpoint-get('to ems') == true) {
|
|
$value: breakpoint-to-base-em($value);
|
|
}
|
|
|
|
@return '(#{$feature}: #{$value})'
|
|
}
|