Sha256: ddc919f19586761276eece38f870bb2c0639415886078bf95042a8077b238ed1
Contents?: true
Size: 573 Bytes
Versions: 38
Compression:
Stored size: 573 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
38 entries across 38 versions & 4 rubygems