https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
611 B
21 lines
611 B
@function breakpoint-parse-default-pair($first, $second) { |
|
$default: breakpoint-get('default pair'); |
|
$min: ''; |
|
$max: ''; |
|
|
|
// Sort into min and max |
|
$min: min($first, $second); |
|
$max: max($first, $second); |
|
|
|
// Set Context |
|
$context-setter: private-breakpoint-set-context(min-#{$default}, $min); |
|
$context-setter: private-breakpoint-set-context(max-#{$default}, $max); |
|
|
|
// Make them EMs if need be |
|
@if (breakpoint-get('to ems') == true) { |
|
$min: breakpoint-to-base-em($min); |
|
$max: breakpoint-to-base-em($max); |
|
} |
|
|
|
@return '(min-#{$default}: #{$min}) and (max-#{$default}: #{$max})'; |
|
}
|
|
|