1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2026-03-02 03:49:29 +00:00

Import minimal-mistakes/3.4.4

This commit is contained in:
Tim Byrne
2016-09-06 22:18:34 -05:00
commit d7a037e469
186 changed files with 16935 additions and 0 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}';
}
}