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,13 @@
@function breakpoint-parse-default($feature) {
$default: breakpoint-get('default feature');
// Set Context
$context-setter: private-breakpoint-set-context($default, $feature);
@if (breakpoint-get('to ems') == true) and (type-of($feature) == 'number') {
@return '#{$default}: #{breakpoint-to-base-em($feature)}';
}
@else {
@return '#{$default}: #{$feature}';
}
}