Sha256: 5699df8455edc42b24e324112e5a5d38ed7ebaaae92035420368b4d885dc4593
Contents?: true
Size: 555 Bytes
Versions: 229
Compression:
Stored size: 555 Bytes
Contents
@function breakpoint-parse-triple-default($feature, $first, $second) { // Sort into min and max $min: min($first, $second); $max: max($first, $second); // Set Context $context-setter: private-breakpoint-set-context(min-#{$feature}, $min); $context-setter: private-breakpoint-set-context(max-#{$feature}, $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-#{$feature}: #{$min}) and (max-#{$feature}: #{$max})'; }
Version data entries
229 entries across 167 versions & 12 rubygems