Sha256: d48990440e8c9704be0386923b75ad7ecba81627f3536ab2cd0a0dd6d3c08866
Contents?: true
Size: 733 Bytes
Versions: 38
Compression:
Stored size: 733 Bytes
Contents
////////////////////////////// // Import Pieces ////////////////////////////// @import "single/default"; @function breakpoint-parse-single($feature, $empty-media, $first) { $parsed: ''; $leader: ''; // If we're forcing @if not ($empty-media) or not ($first) { $leader: 'and '; } // If it's a single feature that can stand alone, we let it @if (breakpoint-single-string($feature)) { $parsed: $feature; // Set Context $context-setter: private-breakpoint-set-context($feature, $feature); } // If it's not a stand alone feature, we pass it off to the default handler. @else { $parsed: breakpoint-parse-default($feature); } @return $leader + '(' + $parsed + ')'; }
Version data entries
38 entries across 38 versions & 4 rubygems